There is an issue with my HTML code for creating 5 sliders. The numbers are changing in the first slider, but not in the other sliders.
<body>
<div class="box">
<div class="slider">
<input type="range" name="eng1" min="0" max="180" value="20">
</div>
<div class="value">180</div>
</div>
</body>
<body>
<div class="box2">
<div class="slider2">
<input type="range" name="eng2" min="0" max="180" value="30">
</div>
<div class="outcome">180</div>
</div>
</body>