-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 912 Bytes
/
index.html
File metadata and controls
39 lines (32 loc) · 912 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>I need food</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="screen" href="css/media.css">
<link href='http://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="content">
<div class="content-container">
<header class="header">
<h1>i <span>need</span> food</h1>
</header>
<article class="main">
<section class="list">
<div class="add-item">
<h2>Gotta get...</h2>
<input type="text" placeholder=" Add an item"><span class="add" /></span>
</div>
<div class="grocery-list">
<p><span class="bought"></span>Milk<span class="delete"></span></p>
<p class="added">Tea<span class="delete"></span></p>
<p>Salad</p>
</div>
</section>
</article>
</div>
</div>
</body>
</html>