Skip to content

Instantly share code, notes, and snippets.

@Rameshwar-ghodke
Created January 16, 2021 06:16
Show Gist options
  • Save Rameshwar-ghodke/86271028bc888ec91921b8537c13d762 to your computer and use it in GitHub Desktop.
Save Rameshwar-ghodke/86271028bc888ec91921b8537c13d762 to your computer and use it in GitHub Desktop.
print star ratings in html
<!-- Font Awesome Icon Library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.star-checked {
color: orange;
}
</style>
</head>
<body>
<h2>Star Rating</h2>
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment