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