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