-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
249 lines (227 loc) · 9.1 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ban Sovanda | Developer</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/mediaqueries.css">
</head>
<body>
<nav id="desktop-nav">
<div class="logo">Sovanda Ban</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skill</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Sovanda Ban</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<!-- to show as line in three par for icon menu -->
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#skills" onclick="toggleMenu()">Skill</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<!-- Profile Section -->
<section id="profile">
<div class="section_pic-container">
<img src="./assets/profile simple.jpg" alt="sovanda profile pic">
</div>
<div class="section_text">
<p class="section_text_p1">Hello, My name is</p>
<h1 class="title">Sovanda</h1>
<p class="section_text_p2">Software Engineering</p>
<!-- <p class="section_text_p2">Web Developer / Flutter Developer</p> -->
<div class="btn-container">
<button class="btn btn-color-1" onclick="window.open('./assets/Ban_Sovanda_CV.pdf')">
Download CV
</button>
<button class="btn btn-color-2" onclick="location.href='#contact' ">
Contact Info
</button>
</div>
<div id="socials-container">
<img src="./assets/linkedin.png"
alt="My linkedin profile"
class="icon"
aria-label="Visit my LinkedIn profile"
onclick="location.href='https://linkedin.com/in/sovanda-ban-73526b190'">
<img src="./assets/github.png"
alt="My Github profile"
class="icon"
aria-label="Visit my Github profile"
onclick="location.href='https://github.com/Sovandaa'">
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<p class="section_text_p1">Get To Know More</p>
<h1 class="title">About Me</h1>
<div class="about-content">
<div class="about-image">
<img src="./assets/profile2.png" alt="My profile picture" class="profile-pic">
</div>
<div class="about-text">
<p class="about-para">
Passionate Software Engineering student exploring application development with focus on usability and scalability.
I enjoy creating useful tools while learning through hands-on projects.
</p>
<p class="about-para">
Exploring new technologies and innovative approaches is what drives me.
Currently focused on expanding my skills while delivering meaningful projects.
</p>
</div>
</div>
</section>
<!-- Skills Sections - Tech Stack -->
<!-- Projects Sections -->
<!-- <section id="projects">
<p class="section_text_p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/unitnest-profile.svg"
alt="Project 1"
class="project-img"
/>
</div>
<h2 class="experience-sub-title project-title">Project One</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/'"
>
Github
</button>
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/'"
>
Live Demo
</button>
</div>
</div>
</div>
</section> -->
<section id="projects">
<p class="section_text_p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/unitnest-profile.svg"
alt="UnitNest Project Preview"
class="project-img"
/>
</div>
<div class="project-content">
<h2 class="project-title">UnitNest</h2>
<h3 class="project-subtitle">Automated Rental Management System</h3>
<div class="project-description">
<p>
A smart rental management platform featuring:
</p>
<ul class="project-features">
<li>Telegram bot for tenant interactions</li>
<li>KHQR payment integration</li>
<li>OCR-based meter reading automation</li>
<li>Flutter dashboard for landlords</li>
<li>Real-time payment tracking</li>
</ul>
</div>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="window.open('https://github.com/')"
>
GitHub
</button>
<button
class="btn btn-color-1 project-btn"
onclick="window.open('https://demo-link.com/')"
>
Live Demo
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Sections -->
<section id="contact">
<p class="section_text_p1">Get in Touch</p>
<h1 class="title">Contact Me</h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img
src="./assets/email.png"
alt="Email icon"
class="icon contact-icon email-icon"
/>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/linkedin.png"
alt="LinkedIn icon"
class="icon contact-icon"
/>
<p><a href="https://www.linkedin.com/in/sovanda-ban-73526b190">LinkedIn</a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/telegram.png"
alt="Telegram icon"
class="icon contact-icon"
/>
<p><a href="https://t.me/sovanda_ban">@sovanda_ban</a></p>
</div>
</div>
</section>
<!-- Footer Page -->
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<p>Copyright © 2025 Sovanda Ban. All Rights Reserved.</p>
</footer>
<script src="scripts/script.js">
</script>
</body>
</html>
<!-- <h1 style="text-align: center;">Welcome To My Portfolio</h1>
<div style="display: flex;">
<ul style="text-decoration: none;">
<li>Home</li>
<li>About</li>
<li>Skill</li>
</ul>
</div> -->