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