-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
110 lines (104 loc) · 4.54 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arpit Sarang - Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700&family=Monoton&family=Orbitron:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">SaranG.teCh</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h1>Hey, I'm <span class="highlight">Arpit Sarang</span></h1>
<p>Web Developer 💻 & Competitive Programmer 🧩, crafting elegant solutions with code.</p>
<a href="#projects" class="btn">Explore My Work</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<h2>About Me</h2>
<p>
Hi, I'm Arpit Sarang, a passionate <strong>Web Developer</strong> and <strong>Competitive Programmer</strong>. 🚀
Skilled in crafting visually stunning, user-centric websites and solving complex problems using Python and C++.
I'm always exploring new technologies to bring ideas to life.
</p>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<h2>My Projects</h2>
<div class="project-list">
<!-- Project 1 -->
<div class="project">
<h3>Calculator</h3>
<p>
A JavaScript-based calculator with advanced scientific operations and a sleek dark theme.
</p>
<ul>
<li>Features: Basic arithmetic, trigonometry, logarithms, responsive design.</li>
</ul>
<a href="https://codemaverick-143.github.io/Calculator_project_2024_1st_year/" class="btn">View Project</a>
</div>
<!-- Project 2 -->
<div class="project">
<h3>ToDo List App</h3>
<p>
A simple and responsive ToDo List app built with HTML, CSS, and JavaScript. Organize tasks effortlessly.
</p>
<a href="https://codemaverick-143.github.io/To-Do-List-1styear-2024/" class="btn">View Project</a>
</div>
<!-- Project 3 -->
<div class="project">
<h3>Portfolio Website</h3>
<p>
My Matrix-inspired portfolio with a responsive layout, featuring smooth navigation and glowing effects.
</p>
<a href="https://sarangtechfoliopro.netlify.app" class="btn">View Project</a>
</div>
<!-- Project 4 -->
<div class="project">
<h3>NST_SDC Website</h3>
<p>
A multi-page website for the software developer club named NST-SDC with user authentication and interactive features.
</p>
<a href="https://jade-marigold-88c01e.netlify.app" class="btn">View Project</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<h2>Contact Me</h2>
<form id="contactForm">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send</button>
</form>
<p>Email: <a href="mailto:[email protected]" style="color:aliceblue">[email protected]</a></p>
<p>Phone: +91 9341741017</p>
<div class="social-links">
<a href="https://linkedin.com/in/arpit-sarang-ab0b63320" target="_blank" style="color:aliceblue">LinkedIn</a> |
<a href="https://github.com/CodeMaverick-143" target="_blank" style="color:aliceblue">GitHub</a> |
<a href="https://www.hackerrank.com/CodeMaverick_143" target="_blank" style="color:aliceblue">HackerRank</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Arpit Sarang. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>