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