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