odin-codespace/dom-exercise/index.html
2023-09-26 09:33:47 -04:00

17 lines
No EOL
401 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
</div>
<button onclick="alert('Hello World')">Click Me</button>
<!-- the HTML file -->
<button id="btn">Click Me</button>
<script src="js/script.js"></script>
</body>
</html>