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