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