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