-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotoresults.html
64 lines (57 loc) · 1.94 KB
/
photoresults.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
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
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lifetime</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class = "top-bar black-top-bar">
<div class="top-bar-left">
<ul class = "dropdown menu black-top-bar" data-dropdown-menu>
<img src="recycle.png" id="recycle-icon"><h1 id="site-name">LifeTracker</h1>
</ul></div></div>
<div class="grid-x grid-padding-x row">
<div class="large-3 large-centered columns"></div>
<div class="large-6 large-centered columns">
<table id="main-table">
<tr>
<td>Name</td>
<td>Happy Microwave</td>
</tr>
<tr>
<td>Brand</td>
<td>Happy Electronics</td>
</tr>
<tr>
<td>Environmental impact</td>
<td>Low</td>
</tr>
<tr>
<td>Repair options </td>
<td>Repair cafes</td>
</tr>
<tr>
<td>Average lifetime</td>
<td>5 years (10% longer than the average microwave)</td>
</tr>
<tr>
<td>Alternative brands</td>
<td>Sad Electronics</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>