-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 861 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 861 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SIMPList</title>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id='container'>
<header id='main-header'>
<img src="images/basket.png" alt="">
<p>SIMP<span id='logo'>List</span></p>
</header>
<section id='enter-item'>
<p>Add an item in the box below and press "Enter" to add it to the list.</p>
<button>Reset list</button>
<input type="text" id="add-item" placeholder="Add item">
</section>
<section id='item-list'></section>
</div>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>