-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (103 loc) · 3.72 KB
/
index.html
File metadata and controls
121 lines (103 loc) · 3.72 KB
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
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects</title>
<style>
body {
background-color: #f1f5f8;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
width: 200px;
margin: 0 auto;
}
a {
text-decoration: none;
color: #333;
font-weight: bold;
}
a:hover {
color: #f1f5f8;
}
h1 {
text-align: center;
font-size: 36px;
margin-top: 20px;
}
p {
text-align: center;
font-size: 18px;
}
.centered-li {
display: flex;
justify-content: center;
align-items: center;
border: 2px solid #333;
padding: 10px;
transition: background-color 0.3s;
cursor: pointer;
margin-bottom: 20px;
}
.centered-li:hover {
background-color: #555;
color: #fff;
}
</style>
</head>
<body>
<h1 align="center">Hi, I'm Pawan 👋</h1>
<h3 align="center">Passionate Full Stack Developer from India</h3>
<h3 align="center">Connect with me:</h3>
<p align="left">
<a href="mailto:p1.sirsat1998@gmail.com" target="_blank">
<img src="https://img.icons8.com/color/48/000000/gmail-new.png" alt="Gmail" width="30" height="30" />
</a>
<a href="https://drive.google.com/file/d/1ixx97YVph0IQR_OsCANnKY5_U64W41UR/view?usp=sharing" target="_blank">
<img src="https://img.icons8.com/color/48/000000/contract-job.png" alt="CV" width="30" height="30" />
</a>
</p>
<p align="left">
<a href="https://twitter.com/sirsat_pawan" target="_blank">
<img
src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg"
alt="Twitter" height="30" width="40" />
</a>
<a href="https://linkedin.com/in/pawan-sirsat-72a0ba174/" target="_blank">
<img
src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg"
alt="LinkedIn" height="30" width="40" />
</a>
<a href="https://instagram.com/p1.sirsat?utm_source=qr&igshid=ngexmmi2ytkyzg%3d%3d" target="_blank">
<img
src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg"
alt="Instagram" height="30" width="40" />
</a>
</p>
<h1>My Projects</h1>
<p>Explore my portfolio of projects:</p>
<ul>
<li class="centered-li"><a href="https://pawansirsat.github.io/Coding-Quizzer-BackendAsService/">Quizzer</a></li>
<li class="centered-li"><a href="https://pawansirsat.github.io/Portfolio-Website/">Portfolio Website</a></li>
<li class="centered-li"><a href="https://pawansirsat.github.io/Github-Contribution-Graph-API/">GitHub
Contribution API</a></li>
<li class="centered-li"><a href="09_Check-Box/index.html">CheckBox Facebook</a></li>
<li class="centered-li"><a href="03_Guessing-Game/index.html">Guessing Game</a></li>
<li class="centered-li"><a href="06_Generate-RandomUser-API/index.html">Generate Random User</a></li>
<li class="centered-li"><a href="07_Random_Joke-API/index.html">Random Joke</a></li>
<li class="centered-li"><a href="01_Color_Flipper/index.html">Color Flipper</a></li>
<li class="centered-li"><a href="02_Counter/index.html">Counter</a></li>
<li class="centered-li"><a href="04_Review-project/index.html">Reviews</a></li>
<li class="centered-li"><a href="05_Shopping-Cart-JS/index.html">Shopping Cart</a></li>
<!-- Add links to other HTML files here -->
</ul>
</body>
</html>