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