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