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