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