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