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