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