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