-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (133 loc) · 3.55 KB
/
index.html
File metadata and controls
238 lines (133 loc) · 3.55 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ilsa Tariq Want | Portfolio</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- NAVBAR -->
<nav>
<h2 class="logo">ILSA</h2>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#tech">Tech</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<section id="home" class="hero">
<div class="hero-container">
<h1>Hi, I'm <span>Ilsa Tariq Want</span></h1>
<p>
Computer Science student at Universiti Malaya building
mobile apps, dashboards, and interactive systems.
</p>
<div class="hero-buttons">
<a href="#projects" class="btn-primary">View Projects</a>
<a href="files/Ilsa_CV.pdf" download class="btn-secondary">Download CV</a>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="container">
<div class="about-grid">
<img src="images/ilsaimage.jpg" class="about-img">
<div>
<h2>About Me</h2>
<p>
I am a Computer Science student passionate about software development,
UI/UX design, and building applications that solve real problems.
I enjoy developing mobile apps, dashboards, and intelligent systems
that combine design with functionality.
</p>
</div>
</div>
</div>
</section>
<!-- TECH STACK -->
<section id="tech">
<div class="container">
<h2 class="section-title">Tech Stack</h2>
<div class="tech-grid">
<div class="tech-card">Java</div>
<div class="tech-card">Python</div>
<div class="tech-card">HTML</div>
<div class="tech-card">CSS</div>
<div class="tech-card">JavaScript</div>
<div class="tech-card">SQL</div>
<div class="tech-card">Android Studio</div>
<div class="tech-card">Firebase</div>
<div class="tech-card">Streamlit</div>
<div class="tech-card">Git</div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section id="projects">
<div class="container">
<h2 class="section-title">Projects</h2>
<div class="projects-grid">
<!-- PROJECT 1 -->
<div class="project-card">
<img src="images/farmerPal.png">
<h3>FarmerPal Mobile App</h3>
<p>
Smart farming application supporting SDG 2 with weather updates,
soil analysis, pest detection, AI chatbot, and community features.
</p>
<div class="project-buttons">
<a href="#">GitHub</a>
</div>
</div>
<!-- PROJECT 2 -->
<div class="project-card">
<img src="images/farmerPal.png">
<h3>Pokémon Battle Game</h3>
<p>
Java turn-based battle game implementing OOP concepts like inheritance,
polymorphism, and encapsulation.
</p>
<div class="project-buttons">
<a href="#">GitHub</a>
</div>
</div>
<!-- PROJECT 3 -->
<div class="project-card">
<img src="images/farmerPal.png">
<h3>MemeCoin Dashboard</h3>
<p>
Interactive dashboard built with Python and Streamlit showing real-time
crypto data and sentiment analysis.
</p>
<div class="project-buttons">
<a href="#">GitHub</a>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="container">
<h2 class="section-title">Contact Me</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message"></textarea>
<button type="submit" class="btn-primary">Send Message</button>
</form>
</div>
</section>
<!-- FOOTER -->
<footer>
<p>© 2026 Ilsa Tariq Want | Portfolio</p>
</footer>
<script src="script.js"></script>
</body>
</html>