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