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