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