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