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