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