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