Created
January 16, 2021 06:16
-
-
Save Rameshwar-ghodke/86271028bc888ec91921b8537c13d762 to your computer and use it in GitHub Desktop.
print star ratings in html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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