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