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