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