-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (78 loc) · 3.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta Tags for SEO -->
<meta name="description" content="Welcome to my personal website. Learn more about me, download my resume, and get in touch.">
<meta name="keywords" content="about me, resume, contact, personal website, portfolio">
<meta name="author" content="Your Name">
<!-- Page Title for SEO -->
<title>About Me - Your Name</title>
<!-- Favicon -->
<link rel="icon" href="https://img.icons8.com/ios/100/internet--v1.png" type="image/png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- Bootstrap JS and Popper.js (moved to the end of the body for faster page loading) -->
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">About Me</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#resume">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Home Section -->
<section id="home" class="container mt-5">
<div class="row">
<div class="col-md-6">
<h1>Welcome to My Website</h1>
<p>A brief introduction goes here.</p>
<a href="resume.pdf" class="btn btn-primary">Download CV</a>
</div>
<div class="col-md-6">
<!-- Rounded Profile Picture with Alt Text -->
<img src="profile.jpg" alt="Your Name - Profile Picture" class="img-fluid rounded-circle">
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="container mt-5">
<h2>About Me</h2>
<p>Here you can find detailed information about my background, skills, and experiences.</p>
</section>
<!-- Resume Section -->
<section id="resume" class="container mt-5">
<h2>Resume</h2>
<p>Explore my professional journey and achievements. You can also <a href="resume.pdf">download my full resume</a>.</p>
</section>
<!-- Contact Section -->
<section id="contact" class="container mt-5">
<h2>Contact Me</h2>
<p>Let's connect! Feel free to reach out to me through the <a href="#contact">contact form</a> or via email at [email protected].</p>
</section>
<!-- Footer Section -->
<footer class="container mt-5 text-center">
<p>© <span id="currentYear"></span> Your Name. All rights reserved.</p>
</footer>
<!-- JavaScript for Smooth Scrolling and Year Update -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>