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