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