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