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