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