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