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