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