-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (150 loc) · 7.06 KB
/
index.html
File metadata and controls
156 lines (150 loc) · 7.06 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio | Home</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Header/Navigation -->
<header class="header">
<div class="container">
<div class="logo">
<a href="index.html">Portfolio</a>
</div>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item"><a href="index.html" class="nav-link active">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="projects.html" class="nav-link">Projects</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
<li class="nav-item">
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark mode">
<i class="fas fa-moon"></i>
</button>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1 class="hero-title">Hi, I'm <span class="highlight">Vanna Khat</span></h1>
<h2 class="hero-subtitle">Frontend Developer</h2>
<p class="hero-description">I build exceptional digital experiences that are fast, accessible, and visually appealing.</p>
<div class="hero-buttons">
<a href="projects.html" class="btn btn-primary">View My Work</a>
<a href="contact.html" class="btn btn-secondary">Contact Me</a>
</div>
</div>
<div class="hero-image">
<img src="assets/img/profile.png" alt="John Doe" class="profile-img">
</div>
</div>
</section>
<!-- About Section -->
<section class="about" id="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-text">
<p>I'm a passionate frontend developer with 5 years of experience creating modern web applications. I specialize in HTML, CSS, and JavaScript with a focus on responsive design and user experience.</p>
<p>When I'm not coding, you can find me hiking, reading sci-fi novels, or experimenting with new recipes in the kitchen.</p>
<div class="about-cta">
<a href="about.html" class="btn btn-outline">Learn More</a>
</div>
</div>
<div class="about-skills">
<h3 class="skills-title">My Skills</h3>
<div class="skills-container">
<div class="skill-item">
<div class="skill-name">HTML/CSS</div>
<div class="skill-bar">
<div class="skill-level" data-level="95"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">JavaScript</div>
<div class="skill-bar">
<div class="skill-level" data-level="90"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">UI/UX Design</div>
<div class="skill-bar">
<div class="skill-level" data-level="85"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Projects -->
<section class="featured-projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid" id="featured-projects">
<!-- Projects will be loaded dynamically from projects.json -->
</div>
<div class="projects-cta">
<a href="projects.html" class="btn btn-primary">View All Projects</a>
</div>
</div>
</section>
<!-- Contact CTA -->
<section class="contact-cta">
<div class="container">
<h2 class="section-title">Have a project in mind?</h2>
<p class="cta-text">I'm currently available for freelance work. Let's discuss how I can help bring your ideas to life.</p>
<a href="contact.html" class="btn btn-primary">Get In Touch</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-about">
<h3 class="footer-title">Portfolio</h3>
<p>Creating beautiful, functional websites that make an impact.</p>
</div>
<div class="footer-links">
<h3 class="footer-title">Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-social">
<h3 class="footer-title">Connect</h3>
<div class="social-links">
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Dribbble"><i class="fab fa-dribbble"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© <span id="year"></span> Vanna Khat. All rights reserved.</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/darkmode.js"></script>
<script src="js/filter.js"></script>
</body>
</html>