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