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