-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (148 loc) · 6.63 KB
/
index.html
File metadata and controls
153 lines (148 loc) · 6.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanna Khat - IT Professional</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/dark-mode.css" id="darkModeStyle" disabled>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>Vanna Khat</h1>
<span>IT Professional</span>
</div>
<nav>
<ul>
<li><a href="/" class="active">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/skills.html">Skills</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
<div class="theme-toggle">
<button id="themeToggle">
<i class="fas fa-moon"></i>
</button>
</div>
<div class="mobile-menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h2>Hello, I'm <span class="highlight">Vanna Khat</span></h2>
<h3>IT Professional & Software Developer</h3>
<p>Creating innovative digital solutions with cutting-edge technology</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="images/profile.png" alt="Vanna Khat">
</div>
</div>
</div>
</section>
<section class="services">
<div class="container">
<h2 class="section-title">What I Do</h2>
<div class="services-grid">
<div class="service-card">
<i class="fas fa-code"></i>
<h3>Web Development</h3>
<p>Building responsive and modern websites using the latest technologies.</p>
</div>
<div class="service-card">
<i class="fas fa-mobile-alt"></i>
<h3>App Development</h3>
<p>Creating cross-platform mobile applications with excellent user experience.</p>
</div>
<div class="service-card">
<i class="fas fa-server"></i>
<h3>Backend Development</h3>
<p>Designing robust server-side architectures and APIs for scalable applications.</p>
</div>
</div>
</div>
</section>
<section class="featured-projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid">
<div class="project-card">
<img src="images/project1.jpg" alt="E-Commerce Platform">
<div class="project-info">
<h3>E-Commerce Platform</h3>
<p>Full-stack e-commerce solution with payment integration</p>
<a href="/projects.html">View Details</a>
</div>
</div>
<div class="project-card">
<img src="images/project2.jpg" alt="Task Management App">
<div class="project-info">
<h3>Task Management App</h3>
<p>Productivity application with real-time collaboration</p>
<a href="/projects.html">View Details</a>
</div>
</div>
<div class="project-card">
<img src="images/project3.jpg" alt="Healthcare System">
<div class="project-info">
<h3>Healthcare System</h3>
<p>Patient management system for healthcare providers</p>
<a href="/projects.html">View Details</a>
</div>
</div>
</div>
<div class="center-button">
<a href="/projects.html" class="btn btn-primary">See All Projects</a>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Vanna Khat</h3>
<p>IT Professional specializing in software development and digital solutions.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/skills.html">Skills</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect</h3>
<div class="social-links">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Vanna Khat. All rights reserved.</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
<script src="js/dark-mode.js"></script>
</body>
</html>