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