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