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