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