-
Notifications
You must be signed in to change notification settings - Fork 442
/
recent-activity.html
104 lines (92 loc) · 2.95 KB
/
recent-activity.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recent Activity</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="shortcut icon" href="./faviconicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="shortcut icon" href="./faviconicon.png" type="image/x-icon">
<link rel="stylesheet" href="activity.css" />
<script src="activity.js" defer></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicon_package_v0.16/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon_package_v0.16/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon_package_v0.16/favicon-16x16.png"
/>
<link
rel="manifest"
href="./assets/favicon_package_v0.16/site.webmanifest"
/>
<link
rel="mask-icon"
href="./assets/favicon_package_v0.16/safari-pinned-tab.svg"
color="#5bbad5"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<nav>
<a href="index.html">
<i class="fas fa-home"></i>
</a>
<!-- add a back button -->
<a href="profile.html">
<i class="fas fa-arrow-left"></i>
</a>
</nav>
</header>
<main>
<h1>Recent Activity</h1>
<section class="activity-feed">
<ul>
<!-- Profile Updates -->
<li>
<i class="fa fa-user"></i>
<p>Profile Update: <strong>New information added</strong> - 1 hour ago</p>
</li>
<!-- Friend Requests -->
<li>
<i class="fa fa-user-plus"></i>
<p>Friend Request: <strong>Ritu</strong> sent you a friend request - 2 hours ago</p>
</li>
<!-- Game Addition -->
<li>
<i class="fa fa-gamepad"></i>
<p>New Game Added: <strong>Check out “Mystery Island”</strong> - 4 hours ago</p>
</li>
<!-- Messages -->
<li>
<i class="fa fa-envelope"></i>
<p>Message from <strong>Divya</strong>: "Are you joining the game tonight?" - 5 hours ago</p>
</li>
<li>
<i class="fa fa-envelope"></i>
<p>Message from <strong>Support Team</strong>: "Your issue has been resolved" - 1 day ago</p>
</li>
</ul>
</section>
</main>
</body>
</html>