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