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