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