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