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