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