-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.13 KB
/
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
36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="main.css"/>
</head>
<body>
<div class="container">
<ul class="list"></ul>
<div class="current">
<form action="">
<input id="item__name" type="text" placeholder="name"/>
<input id="item__count" type="text" placeholder="count"/>
<div class="radio">
<input id="item__color--green" name="color" value="green" type="radio"/>
<label for="item__color--green">Green</label>
<input id="item__color--red" name="color" value="red" type="radio"/>
<label for="item__color--red">Red</label>
<input id="item__color--blue" name="color" value="blue" type="radio"/>
<label for="item__color--blue">Blue</label>
</div>
<button id="item__save">save</button>
<button id="item__remove">remove</button>
<button id="item__new">new</button>
</form>
</div>
</div>
<script src="ItemClass.js"></script>
<script src="app.js"></script>
</body>
</html>