-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
73 lines (73 loc) · 2.41 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About - Hasmitha Gunda's Portfolio</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Hasmitha Gunda's Portfolio</h1>
<button class="menu-toggle" aria-label="Toggle menu"></button>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<div class="intro">
<h3>Introduction</h3>
<p>
I am Hasmitha Gunda, a passionate web developer and machine learning enthusiast. I enjoy creating interactive web experiences using modern technologies. Currently pursuing Bachelor of Technology in Computer Science and Engineering with a specialization in Artificial Intelligence and Machine Learning.
</p>
</div>
<div class="education">
<h3>Education</h3>
<ul>
<li>BVRIT Hyderabad College of Engineering for Women (2021-2025)</li>
<li>Sri Chaitanya Junior College (2019-2021)</li>
<li>Teja High School (2019)</li>
</ul>
</div>
<div class="experience">
<h3>Experience</h3>
<ul>
<li>BHARAT INTERN Virtual Internship (July - August 2023)
<p>Machine Learning Intern Online</p>
</li>
<li>Web Development Intern (November 2023 - January 2024)
<p>Worked as a Web Development Intern at BasketHunt Company.</p>
</li>
</ul>
</div>
<div class="skills">
<h3>Skills</h3>
<ul>
<li>Machine Learning</li>
<li>Python</li>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Flask</li>
<li>Git</li>
</ul>
</div>
<div class="contact">
<h3>Contact Information</h3>
<ul>
<li>Email: hasmitha.gunda@gmail.com</li>
<li>Phone: +91 6309674672</li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/hasmitha-gunda-844111253/" target="_blank">@hasmitha-gunda-844111253</a></li>
<li>GitHub: <a href="https://github.com/hasmithagunda123" target="_blank">hasmithagunda123</a></li>
</ul>
</div>
</section>
<footer>
<p>© 2023 Hasmitha Gunda's Portfolio. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>