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