-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 974 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/main.css">
<!-- link href='http://fonts.googleapis.com/css?family=Cardo:400italic' rel='stylesheet' type='text/css'> -->
<!-- <link href='http://fonts.googleapis.com/css?family=Roboto:100' rel='stylesheet' type='text/css'> -->
<link href='http://fonts.googleapis.com/css?family=Rokkitt' rel='stylesheet' type='text/css'>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link rel="stylesheet" href="css/font-awesome.min.css">
<title>Shopping List</title>
</head>
<body>
<div class="container">
<!-- <div class="header"> :: an all purpose to-do list</div> -->
<div class="input">
<input type="text" name="input-field" id="input-field" placeholder="add items :: press enter"><button class="reset">reset all</button>
</div>
<div class='list'>
</div>
<div class="footer"></div>
</div>
<script src="js/app.js"></script>
</body>
</html>