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