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