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