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