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