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