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