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