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