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