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