-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
221 lines (202 loc) · 10.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My Portfolio</title>
</head>
<body>
<nav>
<div class="logo">
My Portfolio
</div>
<div class="navlink">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<a href="#" class="btn">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
</nav>
<section id="home" class="hero">
<h1>Hi, I'm <div class="typetext"> Suhaina Fathima M</div> </h1>
<p>A passionate
<span class="auto-type"></span>
with a focus on creating innovative solutions.</p>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script>
var typed = new Typed(".auto-type",{
strings:["Web Developer","Python Developer","Frontend Developer"],
typeSpeed:150,
backSpeed:150,
loop:true,
showCursor: false
})
</script>
<a href="#contact" class="butn">Let's Connect</a>
</section>
<section id="about" class="about-section">
<h2>About Me</h2>
<img src="./images/IMG_20230818_235801-removebg-preview.jpg" alt="photo">
<p>
I am a Sophomore pursuing B.E in CSE in Government College Of Engineering, Salem. My journey in technology has taken me from competitive coding to contributing to open-source projects like GSSoC '24, and I'm eager to learn and grow with each new challenge.
</p>
</section>
<section id="skills" class="skills-section">
<h2>My Skills</h2>
<div class="skills-container">
<div class="skill-item">
<img src="https://kinsta.com/wp-content/uploads/2021/03/HTML-5-Badge-Logo.png" alt="HTML">
<h3>HTML</h3>
</div>
<div class="skill-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/CSS3_logo.svg/800px-CSS3_logo.svg.png" alt="CSS">
<h3>CSS</h3>
</div>
<div class="skill-item">
<img src="https://www.freepnglogos.com/uploads/javascript-png/javascript-logo-transparent-logo-javascript-images-3.png" alt="JavaScript">
<h3>JavaScript</h3>
</div>
<div class="skill-item">
<img src="https://e7.pngegg.com/pngimages/439/345/png-clipart-bootstrap-logo-thumbnail-tech-companies.png" alt="BootStrap">
<h3>BootStrap</h3>
</div>
<div class="skill-item">
<img src="https://s3.dualstack.us-east-2.amazonaws.com/pythondotorg-assets/media/community/logos/python-logo-only.png" alt="Python">
<h3>Python</h3>
</div>
<div class="skill-item">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQBGPSoU-n_H9DQkW44NJoOMw0jaSaifwkGDIB7THDGfw&s" alt="Java">
<h3>Java</h3>
</div>
<div class="skill-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/ISO_C%2B%2B_Logo.svg/1822px-ISO_C%2B%2B_Logo.svg.png" alt="C++">
<h3>C++</h3>
</div>
<div class="skill-item">
<img src="https://upload.wikimedia.org/wikipedia/commons/1/19/C_Logo.png" alt="C">
<h3>C</h3>
</div>
<div class="skill-item">
<img src="https://e7.pngegg.com/pngimages/713/558/png-clipart-computer-icons-pro-git-github-logo-text-logo-thumbnail.png" alt="Git and GitHub">
<h3>Git and GitHub</h3>
</div>
<div class="skill-item">
<img src="https://cdn.vectorstock.com/i/500p/48/11/cyber-security-logo-with-shield-vector-21344811.jpg" alt="Cybersecurity">
<h3>Cybersecurity</h3>
</div>
</div>
</section>
<section id="projects" class="project-section">
<h2>
My Projects
</h2>
<div class="project-container">
<div class="project-item">
<img src="./images/Screenshot 2024-05-18 2039261.png" alt="Python calculator">
<h3>Calculator(GUI and Voice Command) Using Python</h3>
<p> My project: Python Calculator that combines a user-friendly GUI with the power of voice commands!</p>
<a href="https://github.com/SuhainaFathimaM/Calculator-GUI-and-Voice-Command-" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-06-04 203439.png" alt="Weather Dashboard">
<h3>Weather Dashboard</h3>
<p> Weather Dashboard Using HTML, CSS, JavaScript using API. </p>
<a href="https://github.com/SuhainaFathimaM/Weather-dashboard" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-05-18 2100241.png" alt="E Commerce Website">
<h3>E Commerce Website Using Bootstrap, HTML, CSS</h3>
<p> E Commerce Website Using Bootstrap, HTML, CSS without using JavaScript.. A beginner project</p>
<a href="https://github.com/SuhainaFathimaM/E-Commerce" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-05-18 211050.png" alt="E Commerce Clone app">
<h3>Shopping app clone using HTML, CSS and JavaScript</h3>
<p>Created shopping app clone Using HTML, CSS, JavaScript..</p>
<a href="https://github.com/SuhainaFathimaM/my-App" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-05-22 162233.png" alt="Resume Builder">
<h3>Resume Builder Using HTML, CSS, JavaScript</h3>
<p> Resume Builder that reads details from user and builds your Resume!!</p>
<a href="https://github.com/SuhainaFathimaM/ResumeBuilder" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-05-20 173621.png" alt="Pricing Page">
<h3>Pricing Page using HTML, CSS and JavaScript</h3>
<p>Created Pricing Page Using HTML, CSS, JavaScript..</p>
<a href="https://github.com/SuhainaFathimaM/pricingpage" class="butn">View Project</a>
</div>
<div class="project-item">
<img src="./images/Screenshot 2024-05-24 194534.png" alt="Pricing Page">
<h3>Calculator using HTML, CSS and JavaScript with light/dark mode functionality</h3>
<p>Created Calculator Using HTML, CSS, JavaScript with light/dark mode functionality..</p>
<a href="https://github.com/SuhainaFathimaM/calculator" class="butn">View Project</a>
</div>
</div>
</section>
<section id="resume" class="resume-section">
<h2>My Resume</h2>
<div class="resume-content">
<div class="resume-column">
<h3>Experience</h3>
<ul>
<li>Contributor at GirlScript Summer Of Code
</li>
</ul>
</div>
<div class="resume-column">
<h3>Education</h3>
<ul>
<li>Pursuing B.E in Computer Science and Engineering from Government College Of Engineering, Salem (2022-2026)</li>
<li>School Education from St.Mary's Girls Higher Secondary School, Salem
<ul>
<li>
12th Std-95.83%
</li>
<li>
10th Std-94.8%
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="download-button-container"> <a href="https://drive.google.com/file/d/1vYhGTJtMRRzefsNMq5iKIhLaKjxgJlTg/view?usp=sharing" download="resume.pdf" class="download-button">Download Resume (PDF)</a> </div>
</section>
<section id="contact" class="contact-section">
<h2>Contact Me</h2>
<div class="social-links">
<a href="https://www.linkedin.com/in/suhaina-fathima-m/" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="LinkedIn"></a>
<a href="https://github.com/SuhainaFathimaM" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" alt="GitHub"></a>
</div>
<form class="contact-form" action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="09373d24-75a1-4a33-8cbe-cde444681b3e">
<input type="text" id="name" name="name" placeholder="Your Name" required>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2024 Suhaina Fathima M. All rights reserved.</p>
</footer>
<script>
const btn = document.getElementsByClassName('btn')[0];
const nav = document.getElementsByClassName('navlink')[0];
btn.addEventListener('click', () => {
nav.classList.toggle('active');
});
</script>
</body>
</html>