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