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