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