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