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