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