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