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