-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (69 loc) · 2.45 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
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
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stylish Portfolio</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<!-- Hero Section -->
<header class="hero-section">
<div class="container text-center">
<h1 class="typewriter-text">Welcome to Jaunel's World</h1>
<p class="hero-subtext">Discover my journey, skills, and creations</p>
<button class="btn btn-primary btn-lg mt-4" onclick="scrollToSection('cards-section')">Explore</button>
</div>
</header>
<!-- Cards Section -->
<section id="cards-section" class="container py-5">
<div class="row g-4">
<div class="col-md-6 col-lg-4">
<a href="aboutMe.html" class="card card-custom">
<div class="card-body">
<h5 class="card-title">About Me</h5>
<p class="card-text">Learn about the adventures that shaped my journey.</p>
</div>
</a>
</div>
<div class="col-md-6 col-lg-4">
<a href="work.html" class="card card-custom">
<div class="card-body">
<h5 class="card-title">My Work</h5>
<p class="card-text">Explore projects from my high school days to now.</p>
</div>
</a>
</div>
<div class="col-md-6 col-lg-4">
<a href="resume.html" class="card card-custom">
<div class="card-body">
<h5 class="card-title">Resume</h5>
<p class="card-text">View my achievements and talents.</p>
</div>
</a>
</div>
<div class="col-md-6 col-lg-4">
<a href="contactMe.html" class="card card-custom">
<div class="card-body">
<h5 class="card-title">Contact Me</h5>
<p class="card-text">Let's connect and chat.</p>
</div>
</a>
</div>
<div class="col-md-6 col-lg-4">
<a href="resources.html" class="card card-custom">
<div class="card-body">
<h5 class="card-title">Resources</h5>
<p class="card-text">Discover the tools I use to create.</p>
</div>
</a>
</div>
</div>
</section>
<!-- Back to Top Button -->
<button class="back-to-top" onclick="scrollToTop()">⬆</button>
<script src="script.js"></script>
</body>
</html>