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