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