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