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