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