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