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