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