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