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