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