mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 14:20:43 -05:00
17 lines
No EOL
401 B
HTML
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> |