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