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