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