Levelcode-JS/index.html
2026-05-02 20:08:12 -03:00

17 lines
419 B
HTML

<!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>