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