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