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