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