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