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