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