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