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