-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meet Paul!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Links -->
<div class="nav-links">
<a href="#">Home</a>
<a href="#">Portfolio</a>
<a href="#">Members</a>
<a href="#">Contact</a>
</div>
<div class="container">
<!-- Image Section with Gradient Overlay -->
<div class="image-section">
<div class="overlay"></div>
</div>
<!-- Text Section -->
<div class="text-section">
<h1>Hi, I'm Paul Samuel</h1>
<p>If you could glimpse into Paul Samuel's day-to-day life, what surprising detail would make you wonder about the intriguing person behind the name?</p>
<a id="learn-more-link" href="javascript:void(0)" onclick="showMoreInfo()">Learn More</a>
</div>
</div>
<!-- Footer -->
<div class="footer">
© 2024 Paul Samuel. All Rights Reserved.
<br>
<a href="https://www.linkedin.com/in/paul-samuel-942022257" target="_blank">LinkedIn</a>
</div>
<script src="script.js"></script>
</body>
</html>