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