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