atribuir um valor para um elemento no html code example
Example 1: html unidades de medida
p { margin: 1em; }
Example 2: Ocultar o mostrar elementos html con js
//elemento html
<div id="myDIV"> </div>
//funcionn js
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}