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