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