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