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