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