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