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