forked from N4si/simple-terraform-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
368 lines (330 loc) · 11.4 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Clouchamp.in - Portfolio of Nasiullha Chaudhari</title>
<style>
/* Your CSS styles can go here */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #007bff;
position: relative;
color: #fff;
text-align: center;
padding: 2rem 1rem;
}
header:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://media.istockphoto.com/id/1345778718/photo/cloud-computing-the-data-transfer-and-storage-concept-consists-of-a-white-polygonal.webp?b=1&s=170667a&w=0&k=20&c=GnhRL-ni1TLWITFWdYUAygacWEiSOK8nS_uo8pKw9rY='); /* Replace with your cloud symbol image URL */
background-size: cover;
opacity: 0.1;
}
header h1 {
margin: 0;
font-size: 3rem;
}
header p {
margin: 0;
font-size: 1.5rem;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
background-color: #f9f9f9;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 1rem;
}
footer a {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
}
/* Style the image */
.cloud-image {
width: 200px;
height: auto;
display: block;
margin: 0 auto;
background-color: #6dd5ed;
border-radius: 50%;
padding: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Add some animations */
header h1 {
animation: fadeInDown 1s;
}
main {
animation: fadeInUp 1s;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Review Section */
.reviews {
margin-top: 2rem;
background-color: #f9f9f9;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
overflow-y: scroll;
max-height: 400px;
}
.review-card {
padding: 1rem;
border: 1px solid #ccc;
border-radius: 10px;
margin-bottom: 1rem;
background-color: #fff;
}
.review-card .rating {
display: flex;
justify-content: center;
align-items: center;
}
.rating span {
color: #ffd700; /* Gold color for stars */
font-size: 1.2rem;
margin-right: 3px;
}
/* Cloud Native Projects Section */
.cloud-native-projects {
margin-top: 2rem;
background-color: #f9f9f9;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.project-card {
padding: 1rem;
border: 1px solid #ccc;
border-radius: 10px;
margin-bottom: 1rem;
background-color: #fff;
}
/* Center the image */
.center-image {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
background-image: linear-gradient(to right, #ff4b5c, #ffc107);
border-radius: 50%;
}
/* Texture for Reviews and Cloud Native Projects */
.reviews {
background-image: linear-gradient(to right, #6dd5ed, #2196f3);
}
.cloud-native-projects {
background-image: linear-gradient(to right, #fdc830, #f37335);
}
/* Styling for headings and links */
h1, h2, h3 {
font-family: 'Lobster', cursive;
color: #007bff;
}
a {
color: #007bff;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #ff4b5c;
}
/* Vibrant box animations */
.vibrant-box {
background-color: #007bff;
color: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
animation: fadeInUp 1s;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Testimonials animation */
.testimonials {
animation: fadeInLeft 1s;
}
.testimonial-card {
animation: fadeInUp 1s;
transition: transform 0.2s ease;
}
.testimonial-card:hover {
transform: scale(1.05);
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
</style>
</head>
<body>
<header>
<h1>Clouchamp.in</h1>
<p>Portfolio of Nasiullha Chaudhari</p>
<div class="social-links">
<a href="https://twitter.com/yourusername" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com/in/yourusername" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/yourusername" target="_blank"><i class="fab fa-github"></i></a>
</div>
</header>
<main>
<div class="center-image">
<img class="cloud-image" src="https://myterraformprojectwebsite2023.s3.amazonaws.com/profile.png" alt="Profile Image">
</div>
<h2>About Me</h2>
<p>Hey there, I'm Nasiullha, a remote DevOps engineer, freelancer, and YouTuber at Cloudchamp. With a deep passion for cloud computing and DevOps.</p>
<p>As a freelancer, I've helped clients design and implement cloud solutions using a variety of DevOps tools, including Kubernetes, Docker, ArgoCD, GitLab, Jenkins, Prometheus, Grafana, and I've earned over $20,000 doing so.</p>
<p>In addition to my work as a remote DevOps engineer and freelancer, I also create content for my YouTube channel, Cloudchamp. My goal is to provide a platform where anyone can learn about cloud computing and DevOps, regardless of their skill level.</p>
<h2 class="testimonials">Reviews</h2>
<div class="reviews">
<div class="testimonial-card">
<div class="rating">
<span>⭐⭐⭐⭐⭐</span>
</div>
<p>"Nasiullha's expertise in cloud computing and DevOps is unparalleled. He provided valuable insights and solutions for our project, and we couldn't be happier with the results."</p>
<p>- John Doe, CEO at Example Corp</p>
</div>
<div class="testimonial-card">
<div class="rating">
<span>⭐⭐⭐⭐⭐</span>
</div>
<p>"Working with Nasiullha was a great experience. His dedication and problem-solving skills made our cloud migration project a success."</p>
<p>- Jane Smith, CTO at ABC Solutions</p>
</div>
<div class="testimonial-card">
<div class="rating">
<span>⭐⭐⭐⭐⭐</span>
</div>
<p>"Nasiullha's knowledge of AWS and cloud infrastructure is impressive. He helped us optimize costs and improve our system's performance."</p>
<p>- Mark Johnson, CIO at XYZ Tech</p>
</div>
<div class="testimonial-card">
<div class="rating">
<span>⭐⭐⭐⭐⭐</span>
</div>
<p>"I am extremely satisfied with Nasiullha's work. He is a true professional with deep knowledge of cloud technologies."</p>
<p>- Sarah Brown, Director of Engineering</p>
</div>
<div class="testimonial-card">
<div class="rating">
<span>⭐⭐⭐⭐⭐</span>
</div>
<p>"Nasiullha's guidance on our cloud security strategy was invaluable. His attention to detail and clear communication are commendable."</p>
<p>- Michael Williams, Security Officer at Company Z</p>
</div>
<!-- Add more reviews as needed -->
</div>
<h2 class="cloud-native-projects">Cloud Native Projects</h2>
<div class="cloud-native-projects">
<div class="project-card">
<h3>Project: Kubernetes in the Cloud</h3>
<p>A scalable and robust Kubernetes setup in the cloud, leveraging the power of microservices architecture and Helm for deployment.</p>
</div>
<div class="project-card">
<h3>Project: CI/CD with Jenkins and GitLab</h3>
<p>Building a robust continuous integration and continuous deployment pipeline using Jenkins and GitLab for version control.</p>
</div>
<div class="project-card">
<h3>Project: Cloud Monitoring with Prometheus and Grafana</h3>
<p>Implementing a comprehensive cloud monitoring solution using Prometheus and Grafana to ensure system reliability.</p>
</div>
<div class="project-card">
<h3>Project: Serverless Architecture with AWS Lambda</h3>
<p>Designing and deploying serverless applications using AWS Lambda for cost efficiency and automatic scaling.</p>
</div>
<div class="project-card">
<h3>Project: DevOps Automation with Ansible</h3>
<p>Creating a fully automated DevOps environment using Ansible for configuration management and orchestration.</p>
</div>
<div class="project-card">
<h3>Project: Microservices with Spring Boot</h3>
<p>Building a microservices-based application using Spring Boot, Docker, and Kubernetes for high availability.</p>
</div>
<div class="project-card">
<h3>Project: AWS Serverless Data Pipeline</h3>
<p>Developing a serverless data pipeline using AWS services such as S3, Lambda, and DynamoDB for data processing.</p>
</div>
<div class="project-card">
<h3>Project: GCP Cloud Functions and Firestore</h3>
<p>Creating and deploying Google Cloud Functions with Firestore as a NoSQL database for scalable applications.</p>
</div>
<div class="project-card">
<h3>Project: Azure DevOps Pipeline</h3>
<p>Setting up a continuous integration and continuous deployment pipeline with Azure DevOps for Azure-based applications.</p>
</div>
<div class="project-card">
<h3>Project: Terraform for Multi-Cloud Provisioning</h3>
<p>Using Terraform to provision and manage resources across multiple cloud providers for hybrid cloud setups.</p>
</div>
<!-- Add more cloud native projects as needed -->
</div>
<div class="vibrant-box">
<h2>Contact Me</h2>
<p>If you have any questions, collaboration opportunities, or just want to say hello, feel free to reach out to me:</p>
<ul>
<li>Email: [email protected]</li>
<li>YouTube: <a href="https://www.youtube.com/@cloudchamp" target="_blank">CloudChamp YouTube Channel</a></li>
<li>LinkedIn: <a href="https://in.linkedin.com/in/nasiullha-chaudhari?trk=public_post_reshare-text&original_referer=https%3A%2F%2Fwww.linkedin.com%2F" target="_blank">Nasiullha Chaudhari's LinkedIn Profile</a></li>
<li>GitHub: <a href="https://github.com/yourusername" target="_blank">Your GitHub Profile</a></li>
</ul>
</div>
</main>
<footer>
<p>© 2023 Clouchamp.in | All rights reserved.</p>
</footer>
</body>
</html>