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