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