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