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