Use on the webTotal Use [ 4401 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/071c6519adf361195d2fe783f1b3827a?family=SilvesteroRegular" 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/071c6519adf361195d2fe783f1b3827a?family=SilvesteroRegular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SilvesteroRegular";
src: url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.eot");
src: url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/071c6519adf361195d2fe783f1b3827a.svg#SilvesteroRegular")format("svg");
}
2CSS rules to specify fonts
font-family: "SilvesteroRegular";