-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 3.27 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 3.27 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
<!DOCTYPE html>
<html>
<head>
<title>Aditya Sonwane - Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
color: #333;
padding: 20px;
margin: 0;
}
.container {
max-width: 800px;
margin: auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
a {
color: #0073e6;
text-decoration: none;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
.skills {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.skill {
background: #0073e6;
color: white;
padding: 10px;
margin: 5px;
border-radius: 5px;
}
@media (max-width: 600px) {
.container {
width: 90%;
padding: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Aditya Sonwane</h1>
<p>DevOps Engineer | Cloud Enthusiast | Automation Expert</p>
<h2>About Me</h2>
<p>I am a DevOps Engineer with 2.6 years of experience at Infosys, specializing in cloud infrastructure, automation, and CI/CD solutions. I have expertise in AWS, GCP, and Microsoft Azure, and I am GCP certified.</p>
<h2>Skills</h2>
<div class="skills">
<span class="skill">AWS</span>
<span class="skill">GCP</span>
<span class="skill">Azure</span>
<span class="skill">Kubernetes</span>
<span class="skill">Terraform</span>
<span class="skill">Jenkins</span>
<span class="skill">Docker</span>
<span class="skill">Python</span>
<span class="skill">Go</span>
<span class="skill">Java</span>
<span class="skill">Linux</span>
<span class="skill">Splunk</span>
<span class="skill">ArgoCD</span>
<span class="skill">CI/CD Pipelines</span>
</div>
<h2>Projects</h2>
<ul>
<li>Automated CI/CD Pipeline Deployment</li>
<li>3-Tier Web Application on AWS</li>
<li>Infrastructure Automation with Terraform</li>
<li>Monitoring & Logging with Splunk and Prometheus</li>
<li>Static Website Deployment using AWS S3 & CloudFront</li>
<li>Kubernetes Cluster Setup on AWS EC2 using Kind</li>
<li>Automating Documentation with MkDocs & GitHub Pages</li>
</ul>
<h2>Certifications</h2>
<ul>
<li>Google Cloud Certified</li>
<li>Microsoft Certified</li>
<li>CKAD (In Progress)</li>
</ul>
<h2>Contact</h2>
<p>Email: aditya@example.com</p>
<p>LinkedIn: <a href="#">linkedin.com/in/adityasonwane</a></p>
<p>GitHub: <a href="#">github.com/adityasonwane</a></p>
</div>
</body>
</html>