-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (66 loc) · 1.6 KB
/
index.html
File metadata and controls
73 lines (66 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Trust Me, I’m a DevOps Engineer</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #0f172a;
color: #e5e7eb;
padding: 40px;
line-height: 1.6;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
h2 {
margin-top: 2rem;
color: #38bdf8;
}
a {
color: #60a5fa;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.card {
background: #020617;
padding: 20px;
border-radius: 12px;
margin-top: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
</style>
</head>
<body>
<h1>🚀 Trust Me, I’m a DevOps Engineer</h1>
<div class="card">
<h2>🌐 Web Application</h2>
<a href="https://web.frdamirul.com/" target="_blank">
https://web.frdamirul.com/
</a>
</div>
<div class="card">
<h2>📊 Monitoring</h2>
<a href="https://monitoring.frdamirul.com/" target="_blank">
https://monitoring.frdamirul.com/
</a>
</div>
<div class="card">
<h2>🏗 Infrastructure</h2>
<p>Provisioned using <strong>Terraform</strong> on AWS.</p>
</div>
<div class="card">
<h2>⚙️ Configuration Management</h2>
<p>Configured using <strong>Ansible</strong>.</p>
</div>
<div class="card">
<h2>📈 Monitoring Stack</h2>
<p><strong>Prometheus</strong> + <strong>Grafana</strong></p>
</div>
</body>
</html>