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