36 lines
618 B
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<title>The DOM</title>
<style>
li{
list-style-type: none;
max-width: 200px;
padding: 8px;
margin: 8px;
background: #eee;
border: 1px dotted #ddd;
}
</style>
</head>
<body>
<h1>todos</h1>
<ul>
<li>buy milk</li>
<li>read the book</li>
<li>play the guitar</li>
<li>pay the bills</li>
</ul>
<button>Click me</button>
<script src="eventBasics.js">
</script>
</body>
</html>