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