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