Skip to content

Commit 3e50563

Browse files
authored
Create index.html
1 parent 9e3c8b6 commit 3e50563

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Exercícios de JavaScript/index.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<!-- Script que executa sozinho, sem a intervenção do usuário -->
3+
<html lang="pt-br">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Primeiro JS</title>
8+
</head>
9+
<body>
10+
<h1>Primeiro JavaScript</h1>
11+
<script>
12+
window.alert('Olá, Mundo!')
13+
</script>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)