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