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