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