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