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