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