-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (96 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f8f9fa;
color: #333;
}
header {
background: #007BFF;
color: #fff;
padding: 20px 0;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
.container {
max-width: 900px;
margin: 30px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 1.8rem;
color: #007BFF;
border-bottom: 2px solid #007BFF;
padding-bottom: 5px;
}
p {
font-size: 1.1rem;
margin: 15px 0;
}
.links p {
margin: 10px 0;
}
a {
font-size: 1.1rem;
color: #007BFF;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px 0;
background: #f4f4f4;
margin-top: 20px;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>Harshit Nagar</h1>
</header>
<div class="container">
<h2>About Me</h2>
<p>
I’m Harshit Nagar, a 19-year-old from Kota, Rajasthan, currently pursuing a B.Tech in Computer Science and Engineering with a focus on Artificial Intelligence and Machine Learning at JECRC University.
I’m passionate about leveraging AI to tackle real-world challenges and drive innovation.
</p>
<h2>Open Source Contributions</h2>
<p>Here are some of my open-source contributions:</p>
<div class="links">
<p><a href="https://github.com/hmpl-language/hmpl/pull/45" target="_blank">Contribution to HMPL Language</a></p>
<p><a href="https://github.com/fordevio/autoCD/pull/7" target="_blank">Contribution to AutoCD</a></p>
<p><a href="https://github.com/opencv/opencv_contrib/pull/3640" target="_blank">Contribution to OpenCV Contrib</a></p>
<p><a href="https://github.com/danjulio/lepton/pull/46" target="_blank">Contribution to Lepton</a></p>
</div>
<h2>Connect with Me:</h2>
<div class="links">
<p><a href="https://github.com/harshitnagar22" target="_blank">GitHub</a></p>
<p><a href="https://www.linkedin.com/in/harshit-nagar-708a27290?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">LinkedIn</a></p>
<p><a href="https://www.instagram.com/harshit.nagar_/profilecard/?igsh=MWEzdW14aW5iN3N3bA%3D%3D" target="_blank">Instagram</a></p>
</div>
</div>
<footer>
© 2025 Harshit Nagar. All rights reserved.
</footer>
</body>
</html>