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