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