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