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