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