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