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