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