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