-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtentativa.html
57 lines (53 loc) · 1.63 KB
/
tentativa.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
<!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>Perfil - Facebook-like</title>
</head>
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen" />
<body>
<header>
<div class="container">
<div id="logo">Facebook</div>
<div id="search-bar">
<input type="text" placeholder="Search">
</div>
<div id="menu">
<ul>
<li>Home</li>
<li>Friends</li>
<li>Messages</li>
</ul>
</div>
</div>
</header>
<main class="container">
<section id="profile">
<img src="profile-picture.jpg" alt="Profile Picture">
<div id="profile-info">
<h2>User Name</h2>
<p>Location</p>
<p>Workplace</p>
</div>
</section>
<section id="post-form">
<textarea placeholder="What's on your mind?"></textarea>
<button>Post</button>
</section>
<section id="feed">
<!-- Postagens do feed aqui -->
<div class="post">
<img src="post-image.jpg" alt="Post Image">
<p>This is a sample post.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Facebook-like Social Network</p>
</div>
</footer>
</body>
</html>