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