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