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