-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode
More file actions
64 lines (59 loc) · 1.57 KB
/
Copy pathCode
File metadata and controls
64 lines (59 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Twitter Clone</title>
<!-- Add your CSS and JavaScript links here -->
</head>
<body>
<header>
<h1>Twitter Clone</h1>
<nav>
<a href="#">Home</a>
<a href="#">Notifications</a>
<a href="#">Messages</a>
</nav>
<input type="text" placeholder="Search" />
<button>Log in</button>
</header>
<main>
<aside>
<h2>trends</h2>
<ul>
<li>#saveamerica</li>
<li>#tiktokstuff</li>
<li>#idk</li>
</ul>
</aside>
<section>
<form>
<textarea placeholder="What's happening?"></textarea>
<button type="submit">Tweet</button>
</form>
<ul>
<!-- Replace these list items with dynamically generated tweets -->
<li>
<h3>andres99</h3>
<p>I'm the creator</p>
</li>
<li>
<h3>Ahmad</h3>
<p>official first tweet</p>
</li>
</ul>
</section>
<aside>
<h2>Who to follow</h2>
<ul>
<li>soneone</li>
<li>Ahmad</li>
<li>andres99</li>
</ul>
</aside>
</main>
<footer>
<p>Twitter GPT Clone © 2023</p>
</footer>
</body>
</html>