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