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