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