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