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