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