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