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