Created
April 28, 2022 15:56
-
-
Save LaisGalvao/58cf68f7d932976ca3fea0af0365eb0f to your computer and use it in GitHub Desktop.
Exemplo prático - Artigo Introdução ao Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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