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