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