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