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