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