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