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