-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (102 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parth Jain - Portfolio</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<h1>Parth Jain</h1>
<nav>
<a href="#about">About Me</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<!-- About Me Section -->
<section id="about">
<h2>About Me</h2>
<p>
Hi! I'm Parth Jain, a Computer Science and Data Science enthusiast currently pursuing a
Bachelor of Technology in Computer Science and Engineering at VIT Bhopal.
I specialize in backend development, API creation, and application design.
</p>
<p>
My interests include participating in cultural and technical events, and exploring nature photography.
</p>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<div class="projects-container">
<div class="project-card">
<h3>Household Service Provider Portal</h3>
<p>
A web application connecting users with professional household service providers,
featuring user registration, service browsing, and booking management.
</p>
<p><strong>Technologies:</strong> Flask, SQLite, HTML, CSS</p>
<a href="#" target="_blank">View Project</a>
</div>
<div class="project-card">
<h3>University Student Convenience System</h3>
<p>
A platform for university students to order printouts, daily essentials, and stationery,
ensuring delivery within 1-2 days.
</p>
<p><strong>Technologies:</strong> FastAPI, Vue.js, SQLite</p>
<a href="#" target="_blank">View Project</a>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<div class="skills-container">
<div class="skill-category">
<h3>Languages</h3>
<p>Python, C/C++, SQL (Postgres, SQLite), JavaScript, HTML/CSS, Rust (basics)</p>
</div>
<div class="skill-category">
<h3>Frameworks</h3>
<p>Vue.js, Flask, FastAPI, Bootstrap</p>
</div>
<div class="skill-category">
<h3>Tools</h3>
<p>Git, VS Code, Figma, Application Development</p>
</div>
<div class="skill-category">
<h3>Key Competencies</h3>
<p>
Report writing, critical thinking, excellent communication, research paper writing,
graphic designing, and AI tools like Canva and Google Sheets.
</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact</h2>
<form id="contactForm">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">Send</button>
</form>
<p>
Connect with me on:
<a href="https://linkedin.com/in/jainparth22" target="_blank">LinkedIn</a> |
<a href="https://github.com/jainparth22" target="_blank">GitHub</a>
</p>
</section>
</main>
<footer>
<p>© 2024 Parth Jain. All Rights Reserved.</p>
</footer>
<script src="scripts/script.js"></script>
</body>
</html>