-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (142 loc) · 5.12 KB
/
index.html
File metadata and controls
146 lines (142 loc) · 5.12 KB
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
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="64x64" href="assets/images/favicon-32x32.png">
<title>Frontend Mentor | Notifications page</title>
<link rel="stylesheet" href="style.css">
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="top-bar">
<div class="title">
<p class="title-text">Notifications</p>
<p class="num" id="num">3</p>
</div>
<a href="#" class="read" id="read">Mark all as read
</a>
</div>
<div class="notifications">
<!--first notication starts-->
<div class="single-box unseen">
<div class="avatar">
<img src="assets/images/avatar-mark-webber.webp" alt="Mark Webber">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Mark Webber</a> reacted to your recent post
<a href="#" class="post">My first tournament today!</a>
<span class="dot"></span>
</p>
<p class="time">1m ago</p>
</div>
</div>
<!--first notication ends-->
<!--second notication starts-->
<div class="single-box unseen">
<div class="avatar">
<img src="assets/images/avatar-angela-gray.webp" alt="Angela Gray">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Angela Gray</a> followed you
<span class="dot"></span>
</p>
<p class="time">5m ago</p>
</div>
</div>
<!--second notication ends-->
<!--third notication starts-->
<div class="single-box unseen">
<div class="avatar">
<img src="assets/images/avatar-jacob-thompson.webp" alt="Jacob Thompson">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Jacob Thompson</a> has joined your group
<a href="#" class="group">Chess Club</a>
<span class="dot"></span>
</p>
<p class="time">1 day ago</p>
</div>
</div>
<!--third notication ends-->
<!--fourth notication starts-->
<div class="single-box with-message">
<div class="avatar">
<img src="assets/images/avatar-rizky-hasanuddin.webp" alt="Rizky Hasanuddin">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Rizky Hasanuddin</a> sent you a private message
</p>
<p class="time">5 days ago</p>
<div class="message">
<p>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.</p>
</div>
</div>
</div>
<!--fourth notication ends-->
<!--fifth notication starts-->
<div class="single-box comment">
<div class="left">
<div class="avatar">
<img src="assets/images/avatar-kimberly-smith.webp" alt="Kimberly Smith">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name"> Kimberly Smith</a> commented on your picture
</p>
<p class="time">1 week ago</p>
</div>
</div>
<div class="right-img">
<img src="assets/images/image-chess.webp" alt="">
</div>
</div>
<!--fifth notication ends-->
<!--sixth notication starts-->
<div class="single-box">
<div class="avatar">
<img src="assets/images/avatar-nathan-peterson.webp" alt="Nathan Peterson">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Nathan Peterson</a> reacted to your recent post
<a href="#" class="post">5 end-game strategies to increase your win rate</a>
</p>
<p class="time">2 weeks ago</p>
</div>
</div>
<!--sixth notication ends-->
<!--seventh notication starts-->
<div class="single-box">
<div class="avatar">
<img src="assets/images/avatar-anna-kim.webp" alt="Anna Kim">
</div>
<div class="text-box">
<p class="notify">
<a href="#" class="name">Anna Kim</a> left the group
<a href="#" class="group">Chess Club</a>
</p>
<p class="time">2 weeks ago</p>
</div>
</div>
<!--seventh notication ends-->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Manisha Das</a>.
</div>
</html>