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