-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (109 loc) · 3.25 KB
/
Copy pathindex.html
File metadata and controls
117 lines (109 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Engineer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
text-align: center;
padding: 10px 0;
background-color: #444;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
}
section {
padding: 20px;
margin: 20px;
background-color: white;
border-radius: 8px;
}
footer {
text-align: center;
padding: 2px 0;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
.profile-picture {
width: 150px;
border-radius: 50%;
display: block;
margin: 0 auto;
}
.contact {
text-align: center;
margin-top: 10px;
}
.contact a {
text-decoration: none;
color: #0066cc;
}
</style>
</head>
<body>
<header>
<h1>Eldiiar Duishenaliev</h1>
<p>Cloud | DevOps | Systems Engineer</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>Hello! I am Eldiiar Duishenaliev, a dedicated person with a passion for building robust, scalable systems. I specialize in automation, cloud technologies, and ensuring the smooth operation of infrastructure.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Infrastructure as Code (IaC)</li>
<li>Cloud Services (AWS, Azure, GCP)</li>
<li>Continuous Integration/Continuous Deployment (CI/CD)</li>
<li>Containerization (Docker, Kubernetes)</li>
<li>Monitoring and Logging</li>
<li>Linux System Administration</li>
<li>Scripting (Bash, Python, PowerShell, Groovy)</li>
</ul>
</section>
<section id="experience">
<h2>Experience</h2>
<p>LinkedIn: <a href="https://linkedin.com/in/eldiiar-duishenaliev" target="_blank">Profile</a></p>
<p>Certifications: <a href="https://www.credly.com/users/eldiiar-duishenaliev/badges" target="_blank">Credly</a></p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>If you would like to get in touch, please feel free to reach out via email or connect with me on LinkedIn.</p>
<div class="contact">
<p>Email: <a href="mailto:eldiiar.duishenaliev@gmail.com">eldiiar.duishenaliev@gmail.com</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/eldiiar-duishenaliev" target="_blank">Profile</a></p>
</div>
</section>
<footer>
<p>© 2024 Eldiiar Duishenaliev. All rights reserved.</p>
</footer>
</body>
</html>