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