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