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