-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathinternProfile.html
69 lines (65 loc) · 1.94 KB
/
internProfile.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
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>Intern Profile</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="internProfile.css" />
</head>
<body>
<header>
<nav>
<ul>
<li>Projects</li>
<li>Tasks</li>
<li>Settings</li>
<li>Home</li>
</ul>
</nav>
<div class="circle__1"></div>
<div class="circle__2"></div>
</header>
<section class="profile-container">
<div class="profile-card">
<div class="profile-photo">
<img src="images/AnjaliYadav(Small).jpeg" alt="Profile Photo" />
</div>
<div class="profile-details">
<h2>John Doe</h2>
<p><strong>Employee ID:</strong> INT-12345</p>
<p><strong>Role:</strong> Fullstack Intern</p>
</div>
</div>
<div class="profile-sections">
<div class="achievements">
<h3>Achievements</h3>
<ul>
<li>Completed Project X</li>
<li>Winner of Hackathon 2023</li>
</ul>
<button class="add-btn">Add Achievement</button>
</div>
<div class="social-links">
<h3>Social Media Links</h3>
<p>
<strong>LinkedIn:</strong>
<a href="#">https://linkedin.com/in/johndoe</a>
</p>
<p>
<strong>GitHub:</strong> <a href="#">https://github.com/johndoe</a>
</p>
</div>
</div>
</section>
<footer>
<p>© 2024 Intern Portal. All rights reserved.</p>
</footer>
</body>
</html>