-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
468 lines (413 loc) · 15.4 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
<!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>Twitter-Clone</title>
<link rel="shortcut icon" href="images/8twitter.png" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src="https://kit.fontawesome.com/93146aa192.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- main-page -->
<section class="main-page">
<!-- left -->
<div class="left">
<div class="left-content">
<div>
<i class="fas fa-search"></i>
<h3 class="left-content-heading">Find Your Intrests</h3>
</div>
<div>
<i class="fas fa-user-friends"></i>
<h3 class="left-content-heading">
Explore what people are talking about
</h3>
</div>
<div>
<i class="fas fa-comment"></i>
<h3 class="left-content-heading">Join the people</h3>
</div>
</div>
</div>
<!-- end of left -->
<div class="right">
<div class="right-content">
<form class="right-content-form">
<input type="text" class="user-info" placeholder="Phone, email, or username" />
<div class="password-container">
<div class="eye-btn">
<input type="password" name="password" id="password" placeholder="Enter your password"/>
<i class="fa fa-eye-slash password-toggle"></i>
</div>
<label>Forgot Password?</label>
</div>
<button type="button" class="btn-top">Log In</button>
</form>
<div class="middle-content">
<i class="fas fa-dove"></i>
<h1>Explore what's happening in the world</h1>
<h4>Join Twitter today</h4>
<button type="button" class="sign-up main-btn">Sign-Up</button>
<button type="button" class="log-in main-btn">Log-In</button>
<h5 class="or">Or</h5>
<button id="google-button" class="google main-btn">Login with Google</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="main-page-footer">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Apps</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Status</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Brand</a></li>
<li><a href="#">Developers</a></li>
<li><a href="#">© 2022 Twitter-Clone</a></li>
</ul>
</footer>
</section>
<!-- End of Main Page -->
<!-- Login Page -->
<section class="login-page">
<nav class="login-page-nav">
<ul>
<li class="brand">
<a href="#"> <i class="fas fa-dove"></i> Home </a>
</li>
<li><a href="#">About</a></li>
<li><a href="#">Language: English</a></li>
</ul>
</nav>
<div class="login">
<div class="login-content">
<h2>Log In To Twitter</h2>
<form class="login-form">
<input type="text" class="login-user-info" placeholder="Phone, Email, or Username" />
<div>
<input type="password" class="login-password" placeholder="Password">
</div>
<div>
<button type="button" class="login-form-btn">Log In</button>
<input type="checkbox" class="login-form-checkbox" id="check" />
<label for="check">Remember Me</label>
<a href="#">Forgot Password?</a>
</div>
</form>
</div>
<footer class="login-footer">
<p>New To Twitter? <a href="#">Sign Up Now</a></p>
<p>
Already using Twitter via text message?
<a href="#">Activate your account </a>
</p>
</footer>
</div>
<!-- Login Modal -->
<div class="login-modal">
<i class="fas fa-times"></i>
<p>
The username and password you entered did not match our records.
Please double check and try again.
</p>
</div>
<!-- End Of Login Modal -->
</section>
<!-- End Of Login Page -->
<!-- News-Feed-Page -->
<section class="feeds-page">
<nav class="feeds-nav dark-mode-1">
<div class="icons">
<a href="#" class="active"><i class="fas fa-home"></i></a>
<a href=""><i class="fas fa-hashtag"></i></a>
<a href=""><i class="far fa-bell"></i></a>
<a href=""><i class="far fa-envelope"></i></a>
</div>
<div class="search-bar">
<i class="fas fa-search"></i>
<input type="text" placeholder="Search Twitter" class="search-bar-input dark-mode-2 light-text border" />
</div>
<div class="user">
<div class="user-img-wrapper">
<img src="images/user1.jpg" alt="" />
</div>
<a href="#" class="user-link light-text">Dang Hoang Ha</a>
<i class="fas fa-chevron-down"></i>
</div>
</nav>
<div class="feeds-content dark-mode-2">
<div class="feeds-header dark-mode-1">
<div class="header-top border">
<h4 class="light-text">Home</h4>
<i class="far fa-star"></i>
</div>
<div class="header-post dark-mode-1 border">
<div class="header-img-wrapper">
<img src="images/user1.jpg" />
</div>
<input type="text" placeholder="What's happening?" class="dark-mode-2 light-text border" />
<i class="far fa-image"></i>
<i class="fas fa-camera"></i>
<i class="far fa-chart-bar"></i>
</div>
</div>
<div class="posts dark-mode-1">
<!-- <div class="post border">
<div class="user-avatar">
<img src="images/user2.jpg" />
</div>
<div class="post-content">
<div class="post-user-info light-text">
<h4>Fabrizio Romano</h4>
<i class="fas fa-check-circle"></i>
<span>@FabrizioRomano . 28d</span>
</div>
<p class="post-text light-text">
Sergio Agüero on Messi and Barça again: “If president Laporta makes the step, I think Messi’s return to
Barcelona will come closer”. 🇦🇷 #FCB
<br>
<br>
Messi has completed 800 career goals last night by scoring vs Panama…
…and has no full agreement with PSG on new deal, at this stage.
</p>
<div class="post-img">
<img src="images/post-img-1.jpg" alt="post" />
</div>
<div class="content__action">
<span class="comment">
<i class="far fa-comment"></i>
<span class="comment-number">1.8K</span>
</span>
<span class="retweet">
<i class="fas fa-retweet"></i></i>
<span class="retweet-number">16.8K</span>
</span>
<span class="favorite">
<i class="far fa-heart"></i>
<span class="favorite-number">84.5K</span>
</span>
<span class="external-link">
<i class='bx bx-link-external'></i>
<span class="share">Share</span>
</span>
</div>
</div>
</div>
<div class="post border">
<div class="user-avatar">
<img src="images/user5.jpg" />
</div>
<div class="post-content">
<div class="post-user-info light-text">
<h4>CS2</h4>
<i class="fas fa-check-circle"></i>
<span>@CounterStrike . 7d</span>
</div>
<p class="post-text light-text">
The Paris Major will be the final CS:GO Major.
<br>
<br>
The following Major will be in March 2024 and the first in Counter-Strike 2.
</p>
<div></div>
<div class="content__action">
<span class="comment">
<i class="far fa-comment"></i>
<span class="comment-number">1.8K</span>
</span>
<span class="retweet">
<i class="fas fa-retweet"></i></i>
<span class="retweet-number">8.9K</span>
</span>
<span id="btn__favourite" class="favorite">
<i class="far fa-heart"></i>
<span class="favorite-number">113.7K</span>
</span>
<span class="external-link">
<i class='bx bx-link-external'></i>
<span class="share">Share</span>
</span>
</div>
</div>
</div> -->
</div>
<div class="follow dark-mode-1">
<h3 class="follow-heading light-text border">Who to follow</h3>
<div class="follow-user border">
<div class="follow-user-img">
<img src="images/user5.jpg" />
</div>
<div class="follow-user-info light-text">
<h4>CS2 <i class="fas fa-check-circle"></i></h4>
<p>@CounterStrike</p>
</div>
<button type="button" class="follow-btn dark-mode-2">Follow</button>
</div>
<div class="follow-user border">
<div class="follow-user-img">
<img src="images/user4.jpg" />
</div>
<div class="follow-user-info light-text">
<h4>Jack Thịnh Phan</h4>
<p>@Zackie</p>
</div>
<button type="button" class="follow-btn dark-mode-2">Follow</button>
</div>
<div class="follow-user border">
<div class="follow-user-img">
<img src="images/user3.jpg" />
</div>
<div class="follow-user-info light-text">
<h4>Sasha <i class="fas fa-check-circle"></i></h4>
<p>@S1pmleO</p>
</div>
<button type="button" class="follow-btn dark-mode-2">Follow</button>
</div>
<div class="follow-user border">
<div class="follow-user-img">
<img src="images/user2.jpg" />
</div>
<div class="follow-user-info light-text">
<h4>Fabrizio Romano <i class="fas fa-check-circle"></i></h4>
<p>@FabrizioRomano</p>
</div>
<button type="button" class="follow-btn dark-mode-2">Follow</button>
</div>
<div class="follow-link">
<a href="#">Show more</a>
</div>
<footer class="follow-footer dark-mode-2">
<ul>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Cookies</a></li>
<li><a href="#">About</a></li>
<li><a href="#">More</a></li>
</ul>
</footer>
</div>
</div>
<!-- Post Button -->
<button type="button" class="post-btn">
+<i class="fas fa-feather-alt"></i> Post
</button>
<!-- Post-Modal -->
<div class="modal-wrapper">
<div class="modal dark-mode-1">
<div class="modal-header border">
<i class="fas fa-times"></i>
<button id="btn__post" type="button">Post</button>
</div>
<div class="modal-body">
<div class="modal-img">
<img src="images/user1.jpg" />
</div>
<input id="input__post" type="text" placeholder="What's happening ?" class="modal-input dark-mode-2 light-text border" />
<i class="far fa-smile"></i>
</div>
<div class="modal-footer">
<div class="modal-icons">
<label class="icon-label" for="modal-post-image">
<i class="far fa-image"></i>
</label>
<input id="modal-post-image" type="file" placeholder="upload image" class="hidden-input" accept="image/jpeg, image/png, image/jpg">
<i class="fas fa-camera"></i>
<i class="far fa-chart-bar"></i>
<span>+</span>
</div>
</div>
</div>
</div>
<!-- Sidebar -->
<div class="sidebar-wrapper">
<div class="sidebar dark-mode-1">
<div class="sidebar-header border">
<h2 class="light-text">Account Info</h2>
<i class="fas fa-times"></i>
</div>
<div class="sidebar-user">
<div class="sidebar-user-img">
<img src="images/user1.jpg" />
</div>
<span>+</span>
</div>
<div class="sidebar-user-info light-text">
<h4>Dang Hoang Ha</h4>
<p>@hha.2907</p>
</div>
<div class="following light-text">
<p class="following-paragraph"><span>811</span> Following</p>
<p class="following-paragraph"><span>8.8K</span> Followers</p>
</div>
<div class="sidebar-list-1 border">
<ul>
<li>
<a href="#"><i class="fas fa-user"></i> Profile</a>
</li>
<li>
<a href="#"><i class="far fa-list-alt"></i> Lists</a>
</li>
<li>
<a href="#"><i class="far fa-bookmark"></i> Bookmarks</a>
</li>
</ul>
</div>
<div class="sidebar-list-2">
<ul>
<li><a href="#">Settings and Privacy</a></li>
<li><a href="#">Help Center</a></li>
<li><button class="log-out-btn">Log Out</button></li>
</ul>
</div>
<!-- Dark Mode -->
<div class="dark-mode">
<p>Dark Mode</p>
<div class="toggle">
<div class="circle"></div>
</div>
</div>
</div>
</div>
<!-- End of Sidebar -->
</section>
<div class="delete-wrapper">
<div class="delete-notification-modal">
<div class="delete-notification">
<h1>Delete Tweets</h1>
<p>This can’t be undone and it will be removed from your profile, the timeline of any accounts that follow you, and from Twitter search results. </p>
<div class="clearfix">
<button type="button" class="cancelBtn">Cancel</button>
<button type="button" class="deletebtn">Delete</button>
</div>
</div>
</div>
</div>
<div class="comment-delete-wrapper">
<div class="comment-delete-notification-modal">
<div class="comment-delete-notification">
<h1>Delete Reply Tweets</h1>
<p>This can't be undone and it will be removed from your profile, the timeline of any accounts that follow you, and from Twitter search results. </p>
<div class="clearfix">
<button type="button" class="commentCancelBtn">Cancel</button>
<button type="button" class="commentDeletebtn">Delete</button>
</div>
</div>
</div>
</div>
<!-- End News-Feed-Page -->
<script src="/js/index.js" type="module"></script>
</body>
</html>