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