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