-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (170 loc) · 7.38 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Docker & DevOps Engineer | Expert in containerization, orchestration, and automated deployments">
<title>Docker & DevOps Engineer</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
document.addEventListener('DOMContentLoaded', function() {
// Header scroll effect
window.addEventListener('scroll', function() {
const header = document.querySelector('header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
// Smooth scroll for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});
</script>
</head>
<body>
<!-- Header -->
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#skills">Skills</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>Docker & DevOps Engineer</h1>
<h2>Building Scalable Container Solutions</h2>
<p>Specialized in containerization, orchestration, and automated deployment workflows</p>
<div class="hero-buttons">
<a href="#projects" class="btn primary">View Projects</a>
<a href="https://drive.google.com/file/d/1jo2l2QJQsYuZsw6MrkXLLyQtTWQmIEPT/view?usp=sharing" class="btn primary" target="_blank">
<i class="fas fa-download"></i> View Resume
</a>
<a href="#contact" class="btn secondary">Contact</a>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<div class="container">
<h2>Technical Expertise</h2>
<div class="skills-grid">
<div class="skill-category">
<h3><i class="fab fa-docker"></i> Docker & Containers</h3>
<ul>
<li>Docker Engine & Compose</li>
<li>Container Security</li>
<li>Image Optimization</li>
<li>Multi-stage Builds</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-box"></i> Orchestration</h3>
<ul>
<li>Kubernetes</li>
<li>Docker Swarm</li>
<li>Service Mesh</li>
<li>Load Balancing</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-sync"></i> CI/CD</h3>
<ul>
<li>Jenkins Pipelines</li>
<li>GitLab CI/CD</li>
<li>GitHub Actions</li>
<li>Automated Testing</li>
</ul>
</div>
<div class="skill-category">
<h3><i class="fas fa-shield-alt"></i> DevOps Practices</h3>
<ul>
<li>Infrastructure as Code</li>
<li>Monitoring & Logging</li>
<li>Security Best Practices</li>
<li>Performance Optimization</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<h2>Featured Projects</h2>
<div class="project-grid">
<div class="project-card">
<h3>Container Platform</h3>
<p>Designed and implemented a scalable container platform using Docker and Kubernetes, supporting multiple microservices with automated deployment.</p>
<div class="tech-stack">
<span>Docker</span>
<span>Kubernetes</span>
<span>Helm</span>
<span>Prometheus</span>
</div>
<a href="https://github.com/nived2/container-platform" class="btn primary">View Project</a>
</div>
<div class="project-card">
<h3>CI/CD Pipeline</h3>
<p>Built an end-to-end CI/CD pipeline with automated testing, security scanning, and deployment to multiple environments using Docker containers.</p>
<div class="tech-stack">
<span>Jenkins</span>
<span>Docker</span>
<span>GitLab</span>
<span>SonarQube</span>
</div>
<a href="https://github.com/nived2/docker-cicd" class="btn primary">View Project</a>
</div>
<div class="project-card">
<h3>Microservices Architecture</h3>
<p>Developed a microservices-based application with Docker Compose, implementing service discovery and load balancing.</p>
<div class="tech-stack">
<span>Docker Compose</span>
<span>Nginx</span>
<span>Redis</span>
<span>MongoDB</span>
</div>
<a href="https://github.com/nived2/microservices" class="btn primary">View Project</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact</h2>
<div class="contact-info">
<a href="mailto:[email protected]" class="contact-item">
<i class="fas fa-envelope"></i>
<span>Professional Email</span>
</a>
<a href="https://github.com/nived2" class="contact-item" target="_blank">
<i class="fab fa-github"></i>
<span>GitHub Projects</span>
</a>
<a href="https://linkedin.com/in/nived-mahendran-a026941b2" class="contact-item" target="_blank">
<i class="fab fa-linkedin"></i>
<span>LinkedIn Profile</span>
</a>
</div>
</div>
</section>
<footer>
<p>© 2024 | Docker & DevOps Engineer</p>
</footer>
</body>
</html>