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