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