Last active
June 25, 2022 01:02
-
-
Save antronic/c6447c350103a16f6a06ce35b71fadf3 to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<title>Progress time</title> | |
<style type="text/css"> | |
html, body { | |
margin: 0; | |
padding: 0; | |
} | |
#wrapper { | |
width: 100%; | |
height: 2px; | |
background: #fafafa; | |
} | |
#progress { | |
width: 100%; | |
height: 100%; | |
background: #f00; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="progress"></div> | |
</div> | |
<script> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment