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