-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (96 loc) · 3.46 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
<!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="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Notifications page</title>
</head>
<body>
<main>
<hgroup>
<h2>Notifications <span class="count">0</span></h2>
<p class="read-all">Mark all as read</p>
</hgroup>
<article>
<img src="./assets/images/avatar-mark-webber.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Mark Webber</span> reacted to your recent post <span class="ref" data-reaction="post">My
first tournament today!</span></p>
</header>
<p class="date">1m ago</p>
</section>
</article>
<article>
<img src="./assets/images/avatar-angela-gray.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Angela Gray</span> followed you <span class="ref" data-update="subscribtion"></span></p>
</header>
<p class="date">5m ago</p>
</section>
</article>
<article>
<img src="./assets/images/avatar-jacob-thompson.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Jacob Thompson</span> has joined your group <span class="ref" data-update="group">Chess
Club</span></p>
</header>
<p class="date">1 day ago</p>
</section>
</article>
<article>
<img src="./assets/images/avatar-rizky-hasanuddin.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Rizky Hasanuddin</span> sent you a private message<span class="ref"
data-update="message"></span></p>
</header>
<p class="date">5 days ago</p>
<section 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>
</section>
</section>
</article>
<article>
<img src="./assets/images/avatar-kimberly-smith.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Kimberly Smith</span> commented on your picture <span class="ref"
data-reaction="picture"></span></p>
</header>
<p class="date">1 week ago</p>
</section>
<section class="picture">
<img src="./assets/images/image-chess.webp" alt="chess">
</section>
</article>
<article>
<img src="./assets/images/avatar-nathan-peterson.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Nathan Peterson</span> reacted to your recent post <span class="ref"
data-reaction="post">5 end-game
strategies to increase your win rate</span></p>
</header>
<p class="date">2 weeks ago</p>
</section>
</article>
<article>
<img src="./assets/images/avatar-anna-kim.webp" alt="">
<section class="notifications">
<header>
<p><span class="name">Anna Kim</span> left the group <span class="ref" data-update="group">Chess Club</span>
</p>
</header>
<p class="date">2 weeks ago</p>
</section>
</article>
</main>
<script src="index.js"></script>
</body>
</html>