-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (137 loc) · 4.9 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>
<link rel="stylesheet" href="styles.css" />
<title>Frontend Mentor | Notifications page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<main class="notif-main">
<div class="container">
<section class="notif-head">
<div class="notif-activity">
<h3>Notifications <span class="unread-tag">3</span></h3>
<p class="mark">Mark all as read</p>
</div>
</section>
<section class="notif-body">
<div class="notif-section unread noti1">
<img src="./assets/images/avatar-mark-webber.webp" alt="" />
<div class="notif-content">
<div class="dot-para">
<p class="notif">
<span class="name">Mark Webber</span> reacted to your recent
post
<span class="post-inst"> My first tournament today!</span>
</p>
<div class="red-dot"></div>
</div>
<p class="time">1m ago</p>
</div>
</div>
<div class="notif-section unread noti2">
<img src="./assets/images/avatar-angela-gray.webp" alt="" />
<div class="notif-content">
<div class="dot-para">
<p class="notif">
<span class="name">Angela Gray</span> followed you
</p>
<div class="red-dot"></div>
</div>
<p class="time">5m ago</p>
</div>
</div>
<div class="notif-section unread noti3">
<img src="./assets/images/avatar-jacob-thompson.webp" alt="" />
<div class="notif-content">
<div class="dot-para">
<p class="notif">
<span class="name">Jacob Thompson</span> has joined your group
<span class="group"> Chess Club </span>
</p>
<div class="red-dot"></div>
</div>
<p class="time">1 day ago</p>
</div>
</div>
<div class="notif-section">
<img src="./assets/images/avatar-rizky-hasanuddin.webp" alt="" />
<div class="notif-content">
<p class="notif">
<span class="name">Rizky Hasanuddin</span> sent you a private
message
</p>
<p class="time">5 days ago</p>
<div class="message">
Hello, thanks for setting up the Chess Club. I've been a member
for a few weeks now and I'm already having lots of fun and
improving my game.
</div>
</div>
</div>
<div class="notif-section">
<img src="./assets/images/avatar-kimberly-smith.webp" alt="" />
<div class="notif-content">
<div>
<p class="notif">
<span class="name"> Kimberly Smith </span> commented on your
picture
</p>
<p class="time">1 week ago</p>
</div>
<img src="./assets/images/image-chess.webp" alt="" />
</div>
</div>
<div class="notif-section">
<img src="./assets/images/avatar-nathan-peterson.webp" alt="" />
<div class="notif-content">
<p class="notif">
<span class="name"> Nathan Peterson</span> reacted to your
recent post
<span class="post-inst"
>5 end-game strategies to increase your win rate</span
>
</p>
<p class="time">2 week ago</p>
</div>
</div>
<div class="notif-section">
<img src="./assets/images/avatar-anna-kim.webp" alt="" />
<div class="notif-content">
<p class="notif">
<span class="name"> Anna Kim </span> left the group
<span class="group"> Chess Club </span>
</p>
<p class="time">2 week ago</p>
</div>
</div>
</section>
</div>
</main>
<script src="script.js"></script>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Ebube Nwanze</a>.
</div>
</body>
</html>