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