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