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