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