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