Last active
October 5, 2015 20:41
-
-
Save amitkaps/a86964e07ba2ba193e11 to your computer and use it in GitHub Desktop.
Bar Chart - HTML
This file contains 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
<!DOCTYPE html> | |
<style> | |
#chart div { | |
background-color: brown; | |
height: 25px; | |
margin: 5px; | |
} | |
</style> | |
<div id="chart"> | |
<div style="width: 50px;"></div> | |
<div style="width: 250px;"></div> | |
<div style="width: 150px;"></div> | |
<div style="width: 200px;"></div> | |
<div style="width: 100px;"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment