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