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