-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind.html
140 lines (137 loc) · 4.58 KB
/
find.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
<!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>Find - Royal Messenger</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="status-bar">
<div class="status-bar__column">
<span>Vodafone UK</span>
<!-- wifi icon to be added -->
<i class="fa-solid fa-wifi"></i>
</div>
<div class="status-bar__column">
<span>18:43</span>
</div>
<div class="status-bar__column">
<span>87%</span>
<!-- battery icon to be added -->
<i class="fa-solid fa-battery-full"></i>
<!-- lightening icon to be added -->
<i class="fa-sharp fa-solid fa-bolt"></i>
</div>
</div>
<header class="screen-header">
<h1 class="screen-header__title">Find</h1>
<div class="screen-header__icons">
<span><i class="fas fa-search fa-lg"></i></span>
<span class="screen-header__icons__badge">
<span class="screen-header__icons__badge--more"></span>
<a href="settings.html"><i class="fas fa-cog fa-lg"></i></a>
</span>
</div>
</header>
<main class="main-screen">
<div class="icon-row">
<div class="icon-row__icon">
<i class="fa-solid fa-qrcode"></i><span>QR Code</span>
</div>
<div class="icon-row__icon">
<i class="far fa-light fa-address-book"></i
><span>Add by Contacts</span>
</div>
<div class="icon-row__icon">
<i class="fa-solid fa-fingerprint"></i><span>Add by ID</span>
</div>
<div class="icon-row__icon">
<i class="fa-regular fa-envelope"></i><span>Invite</span>
</div>
</div>
<div class="recommended-friends">
<h6 class="recommened-friends__title">Recommended Friends</h6>
<div class="user-component">
<div class="user-component__column">
<img
src="image/george.jpg"
class="user-component__avatar user-component__avatar--xl"
/>
<div class="user-component__text">
<h4 class="user-component__title">Prince George</h4>
<h6 class="user-component__subtitle">The Prince of Wales</h6>
</div>
</div>
<div class="user-component__column"></div>
</div>
</div>
<div class="open-chat">
<div class="open-chat__header">
<h4>Open Chat</h4>
<span
>Go to Openchat Home<i class="fas fa-chevron-right fa-xs"></i
></span>
</div>
</div>
<div class="open-post">
<div class="open-post__column">
<h5 class="open-post__title">#BTS</h5>
<h6 class="open-post__hashtags">#bts#army#friends</h6>
<div class="open-post__members">
<div>
<img src="image/bts.jpeg" />
</div>
<span class="open-post__member-count">802 members</span>
<div class="divider"></div>
<span class="open-post__member-status">Active</span>
</div>
</div>
<div class="open-post__column">
<div class="open-post__photo">
<img src="image/bts.jpeg" />
<div class="open-post__heart-count">
<i class="fa-solid fa-heart fa-xs"></i><span>326</span>
</div>
</div>
</div>
</div>
</main>
<nav class="nav">
<ul class="nav__list">
<li class="nav__btn">
<a class="nav__link" href="friends.html"
><i class="far fa-user fa-2x"></i
></a>
</li>
<li class="nav__btn">
<a class="nav__link" href="chats.html"
><span class="nav__notification">1</span
><i class="far fa-comment fa-2x"></i
></a>
</li>
<li class="nav__btn">
<a class="nav__link" href="find.html"
><i class="fas fa-search fa-2x"></i
></a>
</li>
<li class="nav__btn">
<a class="nav__link" href="more.html"
><span class="nav__more"></span><i class="fas fa-ellipsis fa-2x"></i
></a>
</li>
</ul>
</nav>
<div id="no-mobile">
<span id="screen-warning"
>This application is optimised for mobile device. Please reduce your
window size to use the application.</span
>
</div>
<script
src="https://kit.fontawesome.com/a4dcf2757f.js"
crossorigin="anonymous"
></script>
</body>
</html>