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