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