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