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