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