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