Skip to content

Instantly share code, notes, and snippets.

@LaisGalvao
Created April 28, 2022 15:56
Show Gist options
  • Save LaisGalvao/58cf68f7d932976ca3fea0af0365eb0f to your computer and use it in GitHub Desktop.
Save LaisGalvao/58cf68f7d932976ca3fea0af0365eb0f to your computer and use it in GitHub Desktop.
Exemplo prático - Artigo Introdução ao Javascript
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Oficina Javascript</title>
</head>
<body>
<h1>
Olá...
<input type="text" id="txt-nome" onchange="mostraNome()" /> !!
</h1>
<button type="submit" onclick="mudaCor()">
Mude a cor da página
</button>
<button type="reset" onclick="resetaCor()">
Resete a cor da página
</button>
<ul class="list">
<li></li>
</ul>
<ul>
<li
id="load"
style="
list-style: none;
background-color: aqua;
width: 120px;
height: 50px;
text-align: center;
"
>
Recarregue a página
</li>
</ul>
<script src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment