-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUntitled-1.txt
45 lines (42 loc) · 1.37 KB
/
Untitled-1.txt
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Facebook-like Layout</title>
</head>
<body>
<header>
<div class="container">
<h1>Facebook</h1>
</div>
</header>
<main class="container">
<div id="feed">
<div class="post">
<div class="user-info">
<img src="profile-picture.jpg" alt="Profile Picture">
<h2>User Name</h2>
</div>
<p class="post-content">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<div class="post-actions">
<button class="like-btn">Curtir</button>
<button class="comment-btn">Comentar</button>
</div>
<div class="post-stats">
<span class="likes">0 Curtidas</span>
<span class="comments">0 Comentários</span>
</div>
</div>
<!-- Mais posts aqui -->
</div>
</main>
<footer>
<div class="container">
<p>© 2024 Facebook-like Social Network</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>