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