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