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