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