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