Senac Penha
<body>
<h1 id="titulo"> </h1>
<script>
'use strict';
var melhorCoisaDoMundo = "Paçoca";
document.getElementById("titulo").textContent = melhorCoisaDoMundo;
</script>
</body>
<body>
<h1 id="titulo"> Paçoca </h1>
<script>
'use strict';
document.getElementById("titulo").style.backgroundColor = "yellow";
</script>
</body>
<head>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
$(document).ready(function(){
$("#titulo").text("Paçoca");
};
</head>
<body>
<h1 id="titulo"> </h1>
</body>
<head>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
$(document).ready(function(){
$("#titulo").text("Paçoca").css( { "background-color":"yellow" } );
};
</head>
<body>
<h1 id="titulo"> </h1>
</body>