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