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