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