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