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