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