-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsprofile.html
More file actions
44 lines (42 loc) · 1.26 KB
/
Copy pathsprofile.html
File metadata and controls
44 lines (42 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Profile</title>
<link rel="stylesheet" href="sprofile.css">
</head>
<body>
<header class="header">
<h1>Student Profile</h1>
</header>
<main class="container">
<div class="profile">
<img src="student.jpg" alt="Student Image" class="profile-img">
<h2 class="student-name">John Doe</h2>
<p class="student-info">Aspiring Frontend Developer</p>
</div>
<div class="details">
<section class="courses">
<h3>Courses Enrolled</h3>
<ul id="course-list">
<li>HTML & CSS Basics</li>
<li>JavaScript Essentials</li>
<li>React Fundamentals</li>
<li>Backend Development</li>
</ul>
</section>
<section class="contact">
<h3>Contact Information</h3>
<p>Email: john.doe@example.com</p>
<p>Phone: +123 456 7890</p>
<p>LinkedIn: <a href="#">linkedin.com/in/johndoe</a></p>
</section>
</div>
</main>
<footer class="footer">
<p>© 2024 John Doe. All rights reserved.</p>
</footer>
<script src="sprofile.js"></script>
</body>
</html>