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