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