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