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