-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 900 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<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>JS-13 DOM Intro</title>
</head>
<body>
<header id="header">
<h1 id="header" style="text-align: center">DOM SELECTORS</h1>
</header>
<main>
<section class="add-item">
<h2>ADD NEW ITEM</h2>
<input id="input" type="text" value="Python" />
<input id="btn" type="button" value="ADD" />
</section>
<section class="item-list">
<h2>ITEM LIST</h2>
<ul>
<li class="list">HTML</li>
<li class="list">CSS</li>
<li class="list">Javascript</li>
<li class="list">React</li>
</ul>
</section>
</main>
<script src="./dom.js"></script>
</body>
</html>