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