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