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