-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_list.html
61 lines (60 loc) · 1.95 KB
/
local_list.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style_5.css">
<title>Document</title>
</head>
<body>
<header>
<div class="top-menu">
<h1 class="title">Announcements Web</h1>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Public List</a></li>
<li><a href="">Local List</a></li>
<li><a href="">User List</a></li>
<li><a href="">Create</a></li>
</ul>
<ul class="access">
<li><a href="">Log Out</a></li>
</ul>
</div>
</header>
<main>
<div class="block"></div>
<div class="wrapper">
<div class="local_list_container">
<h2 class="local_list_title">London</h2>
<table>
<tr>
<th>Title</th>
<th>Content</th>
<th>Access</th>
<th>Author</th>
<th>Date</th>
<th>Actions</th>
</tr>
<tr>
<td>Found</td>
<td>Silver Bracelet</td>
<td>Local</td>
<td>Created by: John Doe</td>
<td>25.02.2024, 08:30 p.m.</td>
<td><a href="">View Details</a></td>
</tr>
<tr>
<td>For Sale</td>
<td>Vintage Sofa</td>
<td>Local</td>
<td>Created by: Jake Johnson</td>
<td>23.03.2024, 07:45 a.m.</td>
<td><a href="">View Details</a></td>
</tr>
</table>
</div>
</div>
</main>
</body>
</html>