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