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