Use on the webTotal Use [ 3994 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/acea63c3cc252ae68b405647b3fb4964?family=Sero+Pro" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/acea63c3cc252ae68b405647b3fb4964?family=Sero+Pro);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Sero Pro";
src: url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.eot");
src: url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/acea63c3cc252ae68b405647b3fb4964.svg#Sero Pro")format("svg");
}
2CSS rules to specify fonts
font-family: "Sero Pro";