COMBAT

combat

by mrcrazypants987

HTML

<body>
<br>
<meter value="10"min="0"max="10"id ="healthMeter"></meter><br>
<button type ="button" onclick="healthdown()">health down</button>
<button type ="button" onclick="heal()">heal</button>
<H id="h1"></H>
<script>
var health = 10;
function heal(){
var health = document.getElementById("healthMeter").value;
var health = health + 1;
document.getElementById("healthMeter").value= health;
}

function healthdown(){
var health = document.getElementById("healthMeter").value;
var health = health - 1;
document.getElementById("healthMeter").value= health;
}



</script>




</body>

CSS

document.getElementById("h1").innerHTML=health