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