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