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