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