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