-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat-table.html
53 lines (51 loc) · 1.52 KB
/
chat-table.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- viewport - follow the screen width https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bookings</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section class="center yellow">
<h2>Search all chats</h2>
<form>
<input type="text" placeholder="Type to search more chats" name="search">
<button class="searchbutton" type="submit"><h3>GO</h3></button>
</form>
</section>
<section class="center">
<table class="chattable">
<tr>
<td>Politics</td>
<td>20 members</td>
<td><a class="secondary" href="chatBox.html">Join</a></td>
</tr>
<tr>
<td>University</td>
<td>22 members</td>
<td><a class="secondary" href="chatBox.html">Join</a></td>
</tr>
<tr>
<td>Movies</td>
<td>25 members</td>
<td><a class="secondary" href="chatBox.html">Join</a></td>
</tr>
<tr>
<td>Music</td>
<td>28 members</td>
<td><a class="secondary" href="chatBox.html">Join</a></td>
</tr>
<tr>
<td>Sports</td>
<td>34 members</td>
<td><a class="secondary" href="chatBox.html">Join</a></td>
</tr>
</table>
</section>
<section class="center margintop5">
<a class="primary" href="chat-6-choices.html">Back to my chats</a>
</section>
</body>
</html>