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