-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 2.95 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Coffee?! Find your perfect coffee </title>
<link rel="stylesheet" href="../Mod2Project/style.css">
</head>
<body>
<div id="wrapperBody">
<header>
<div id="wrapperHeaderButtons">
<input class="buttons" id="loginBut"type="button" value="Sign in">
<input class="buttons" id="signUpBut"type="button" value="Sign up">
</div>
</header>
<article>
<div id="wrapperContent">
<div id="mainLogo">
<img src="../Mod2Project/images/logoNew.png" alt="Coffee Logo">
</div>
<div id="wrapperArticle">
<input id="searchBox" type="text"name="SearchVal"id="searchVal"placeholder="Find coffee in....?">
<a href="../Mod2Project/searchResult.html"><input class="buttons"id="searchButton"type="button" value="Search"></a>
</div>
<table id="mainPageTable"> <!--This is for images of coffee shops render -->
<tr>
<td class="imagesTable" id="td1"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
<td class="imagesTable" id="2"><img src="../Mod2Project/images/ManyCups.png" alt="Coffee icon"></td>
<td class="imagesTable" id="3"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
<td class="imagesTable" id="4"><img src="../Mod2Project/images/ManyCups.png" alt="Coffee icon"></td>
<td class="imagesTable" id="5"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
</tr>
<tr>
<td class="imagesTable" id="6"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
<td class="imagesTable" id="7"><img src="../Mod2Project/images/ManyCups.png" alt="Coffee icon"></td>
<td class="imagesTable" id="8"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
<td class="imagesTable" id="9"><img src="../Mod2Project/images/ManyCups.png" alt="Coffee icon"></td>
<td class="imagesTable" id="10"><img src="../Mod2Project/images/CoffeCup.png" alt="Coffee icon"></td>
</tr>
</table>
</div>
</article>
<footer><p>Coffee?! Ltd.</p></footer>
</div>
</body>
</html>