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