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