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