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