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