-
Notifications
You must be signed in to change notification settings - Fork 3
/
profile.html
59 lines (55 loc) · 1.85 KB
/
profile.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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Page</title>
<link rel="stylesheet" href="profile.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="profile-header">
<div class="icon-sign-in">
<i class="fa-solid fa-user"></i>
</div>
<h1 class="user-name">User-Name</h1>
</div>
<div class="navbar">
<div class="nav-logo">
<div class="navbar-texts"><a><b>PROJCAST</b></a></div>
<div class="logo"></div>
</div>
</header>
<main>
<section class="user-stats">
<div class="projects-count">
<h2>Projects Uploaded</h2>
<p>25</p>
</div>
<div class="saved-projects">
<h2>Saved Projects</h2>
<p>10</p>
</div>
<div class="top-domains">
<h2>Top Domains</h2>
<ul>
<li>Web Development</li>
<li>Data Science</li>
<li>UI/UX Design</li>
</ul>
</div>
</section>
<section class="social-media">
<h2>Social Media Handles</h2>
<ul>
<li><a href="#">Twitter: @User-Name</a></li>
<li><a href="#">LinkedIn: /User-Name</a></li>
<li><a href="#">GitHub: /User-Name</a></li>
</ul>
</section>
</main>
</body>
</html>