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