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