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