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