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