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