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