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