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