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