It looks a lot like metro style.
<section>
<p>Progress: <progress> <span id="p">0</span>% </progress> </p>
<script>
var progressBar = document.getElementById('p');
function updateProgress(newValue) {
progressBar.textContent = newValue;
}
</script>
</section>
No comments:
Post a Comment