-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (64 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soham Thorve Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<div class="hero-content">
<img src="profile-pic.jpg" alt="Soham Thorve">
<h1>Hello, I'm Soham Thorve</h1>
<p>A passionate Computer Science student, trekker, and tech enthusiast.</p>
</div>
</section>
<section id="about">
<h2>About Me</h2>
<p>I am a 3rd-year Computer Science student at MIT ADT University with a keen interest in trekking, exploring, traveling, and technology. I have completed several courses and projects, including Java, HTML, CSS, JavaScript, DBMS, SQL, and more. I enjoy creating innovative solutions and developing comprehensive projects.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Java</li>
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>SQL</li>
<li>Python</li>
<li>AI & ML</li>
<li>Computer Vision</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>Expense Tracker System</li>
<li>Password Management App</li>
<li>Real-Time Workout Form Correction</li>
<li>AI-Based Crop Disease Detection</li>
<li>Healthcare Data Analysis</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/soham-thorve-b1a75b1b4">linkedin.com/in/soham-thorve-b1a75b1b4</a></p>
<p>GitHub: <a href="https://github.com/soham0028">github.com/soham0028</a></p>
</section>
<footer>
<p>© 2024 Soham Thorve. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>