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