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