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