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