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