Primeiro commit

This commit is contained in:
levelcode developed 2026-05-02 20:08:12 -03:00
commit ced8fec68e
2 changed files with 18 additions and 0 deletions

17
index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Introducao ao JS</title>
<script src="script.js"></script>
</head>
<body>
<h1>Este é o arquivo html</h1>
<script>
console.log("Hello World javascript");
</script>
</body>
</html>

1
script.js Normal file
View File

@ -0,0 +1 @@
console.log("Hello World do java script do script.js");