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