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