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