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