viewof valeurs= form (html `
<form>
<TABLE BORDER="1">
<TR>
<th> Impact </th>
</tr>
<tr>
<td>
<div data-tip="This is the text of the tooltip2">
<input class="form-control-range" title="This is the text of the tooltip" name= "a" type="range" value=2 min="0" max="5">
<div>
<p> fsdf<p>
<input class="form-control-range" name= "b" type="range" value=2 min="0" max="5">
<button onclick="myFunction()">Try it</button>
<div id="myDIV">
This is my DIV element.
</div>
<input class="form-control-range" name= "c" type="range" value=2 min="0" max="5">
</td>
<td>
<input class="form-control-range" name= "d" type="range" value=2 min="0" max="5">
<input class="form-control-range" name= "e" type="range" value=2 min="0" max="5">
<input class="form-control-range" name= "f" type="range" value=2 min="0" max="5">
</td>
</tr>
</form>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
var x = document.getElementByName("b");
x.value=3
}
</script>`)