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