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