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