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