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