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