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