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