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