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