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