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