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