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