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