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