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