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