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