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