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