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