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