forked from joereddington/reasdiary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
38 lines (37 loc) · 1.24 KB
/
index2.html
File metadata and controls
38 lines (37 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User's Profile - Private</title>
<link rel="stylesheet" href="profile.css">
</head>
<body>
<nav class="navigation">
<div class="nav-container">
<a href="#" class="logo">PhotoShare</a>
<div class="nav-actions">
<a href="photologin.html" class="nav-button">Login</a>
</div>
</div>
</nav>
<body>
<div class="container">
<header class="profile-header">
<img src="images/private_profile.png" alt="User's profile picture" class="profile-pic">
<div class="profile-info">
<h1>play.poet.wedge</h1>
<div class="profile-stats">
<span><strong>120</strong> posts</span>
<span><strong>172</strong> followers</span>
<span><strong>300</strong> following</span>
</div>
<button class="follow-button">Follow</button>
<div class="bio">
<p>This account is private</p>
<p class="private-message">Follow play.poet.wedge to see their photos and videos.</p>
</div>
</header>
</div>
</body>
</html>