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