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