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