-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (52 loc) · 2.76 KB
/
index.html
File metadata and controls
63 lines (52 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notification</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;800&display=swap" rel="stylesheet">
</head>
<body>
<div id="page">
<div id="not">
Notifications <span id="count"></span>
</div>
<div id="read">Mark all as read</div>
<div class="unread not">
<img src="assets/images/avatar-mark-webber.webp" alt="">
<div><a href="#">Mark Webber</a> reacted to your recent post <a href="#">My first tournament today!</a><div class="doti dot"></div>
<div class="time">1m ago</div></div></div>
<div class="unread not">
<img src="assets/images/avatar-angela-gray.webp" alt="">
<div><a href="#">Angela Grey</a> followed you.<div class="doti dot"></div>
<div class="time">5m ago</div></div></div>
<div class="unread not">
<img src="assets/images/avatar-jacob-thompson.webp" alt="">
<div><a href="#">Jacob Thompson</a> has joined your group <a href="#">Chess Club</a><div class="doti dot"></div>
<div class="time">1 day ago</div></div></div>
<div class="not">
<img src="assets/images/avatar-rizky-hasanuddin.webp" alt="">
<div><a href="#">Rizky Hasanuddin</a> has sent you a private message<div class="doti"></div>
<div class="time">5m ago</div></div>
</div>
<div class="msg">
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 class="not">
<img src="assets/images/avatar-kimberly-smith.webp" alt="">
<div><a href="#">Kimberly Smith</a> commented on your picture<div class="doti "></div>
<div class="time">1 week ago</div></div>
<a href="#"><img class="pic" src="assets/images/image-chess.webp" alt=""></a>
</div>
<div class="not">
<img src="assets/images/avatar-nathan-peterson.webp" alt="">
<div><a href="#">Nathan Peterson</a> reacted to your recent post <a href="#"> 5 end-game strategies to increase your win rate</a><div class="doti"></div>
<div class="time">2 weeks ago</div></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>