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