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