-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 1.42 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 1.42 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
52
53
54
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>EComm</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="top-bar">
<div></div>
<div class="site-title">EComm</div>
<div><a href="login.html">Logout</a></div>
</header>
<div class="content-container">
<h1>Products</h1>
<p>Welcome to our store! Click on a product below for more information.</p>
<div class="product-container">
<div>
<div>
<a href="cereal.html">
<img src="images/cereal.png" alt="" width="150" height="150">
</a>
</div>
<div>
We offer many different brands of <strong>cereal</strong>.
</div>
</div>
<div>
<div>
<a href="cookies.html">
<img src="images/cookies.png" alt="" width="150" height="150">
</a>
</div>
<div>
We have yummy <strong>cookies</strong>.
</div>
</div>
<div>
<div>
<a href="eggs.html">
<img src="images/eggs.png" alt="" width="150" height="150">
</a>
</div>
<div>
All of our <strong>eggs</strong> come from local farms.
</div>
</div>
</div>
</div>
</body>
</html>