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