-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
69 lines (68 loc) · 2.86 KB
/
profile.html
File metadata and controls
69 lines (68 loc) · 2.86 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
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeBlog | Your Profile</title>
<link rel="stylesheet" href="css/profile.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header class="home-header" id="home-header">
<nav class="home-navbar" id="home-navbar">
<div class="home-navbar-left">
<a href="/" class="home-link">
<img src="images/logo1.png" alt="Code-Blog logo">
<span class="CodeBlog-Name">CodeBlog</span>
</a>
</div>
<div class="home-navbar-center">
<ul class="home-nav-links">
<li><a href="home.html">Blogs</a></li>
<li><a href="">Discussions</a></li>
<li><a href="Upload.html">Uploads</a></li>
<li><a href="AboutUs.html">About</a></li>
<li><a href="FAQs.html">FAQs</a></li>
<li><a href="">Contact</a></li>
</ul>
</div>
<div class="home-navbar-right">
<div class="home-navbar-right-notification">
<img src="images/notification.png" alt="">
</div>
<div class="home-navbar-right-profile">
<img src="images/profile-photo.png" alt="">
</div>
</div>
</nav>
</header>
<header class="profile-header">
<article class="profile-article">
<div class="name-edit">
<h1>Your Profile</h1>
<button><img src="images/pencil.png"></button>
</div>
<div class="profile-details">
<div class="profile-image"><img src="images/profile-photo.png" alt="profile-here"></div>
<div class="profile-text">
<h1>MAHI REDDY</h1>
<h3>8790473725</h3>
</div>
</div>
<div class="profile-social">
<div class="profile-links">
<div class="linkedin"><img src="images/linkedin.png"></div>
<div class="github"><img src="images/github.png"></div>
<div class="twitter"><img src="images/logos.png"></div>
<div class="insta"><img src="images/instagram.png"></div>
</div>
<div class="profile-button">
<div class="like">Likes: 250</div>
<div class="rank">Rank: 120</div>
</div>
</div>
</article>
</header>
</body>
</html>