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