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