forked from iamaaviral/usra-html-css-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.46 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.46 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<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" />
<link rel="stylesheet" href='index.css' />
<title>Demo Website</title>
</head>
<body>
<header id="main-header">
<div class="container">
<h1 id="header-title"><span>This is my ToDo application</span></h1>
<input class="search-input" type="text" id="search-input">
<button id="button1">send</button>
</div>
</header>
<section class="container">
<div id="main">
<h2 class=title>Add an item here</h2>
<form class="form-inline">
<input type="text" id="item-text">
<input type="submit" id="button" value="submit">
</form>
<h2 class="title">List of things added</h2>
<ul id="items">
<li class="list-group-item">
<span>Item 1 </span>
<button class="delete">X</button>
</li>
<li class="list-group-item">
<span>Item 1 </span>
<button class="delete">X</button>
</li>
<li class="list-group-item">
<span>Item 1 </span>
<button class="delete">X</button>
</li>
<li class="list-group-item">
<span>Item 1 </span>
<button class="delete">X</button>
</li>
</ul>
</div>
</section>
<script src="index.js"></script>
</body>
</html>