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