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