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