-
Notifications
You must be signed in to change notification settings - Fork 0
/
yourList.html
81 lines (68 loc) · 2.34 KB
/
yourList.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
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
lang="en-GB" xml:lang="en-GB">
<head>
<meta charset="UTF-8"/>
<title>Your List</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/yourList.css"/>
<link rel = "stylesheet" type="text/css" href="css/navigation.css"/>
<script src="js/modernizr.js"></script>
<script type="text/javascript" src="selectivizr.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->
</head>
<body>
<header>
<div class="logo">
<img src="images/logoRed.png" alt="logo"/>
</div>
<div class="navigation">
<nav class="centre">
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="findSomeone.html">Find Someone</a></li>
<li><a href="yourList.html">Your List</a></li>
<li><a href="howItWorks.html">How it works</a></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper">
<h1>Your List</h1>
<table>
<col id="one"/>
<col id="two"/>
<col id="three"/>
<thead>
<tr>
<th>Description</th>
<th>Website Link</th>
<th>Options</th>
</tr>
</thead>
<tbody>
<tr>
<td class="colour content">Trainers</td>
<td class="colour content"><a href="http://www.jdsports.co.uk/product/nike-air-max-1-ultra-moire/154799/">www.jdsports.co.uk</a></td>
<td>
<button>Edit</button>
<button>Remove</button>
</td>
</tr>
<tr>
<td class="colour content">Pentomino Puzzle</td>
<td class="colour content"><a href="https://www.etsy.com/">www.etsy.com</a></td>
<td>
<button>Edit</button>
<button>Remove</button>
</td>
</tr>
</tbody>
</table>
<button class="addButton">Add</button>
</div>
</body>
</html>