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