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