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