-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 3.08 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚀 DevOps CHAOS MASTER - Ultimate Mayhem Edition 🚀</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Particle Canvas -->
<canvas id="particles"></canvas>
<!-- Floating Chaos Elements -->
<div class="chaos-elements">
<div class="chaos-item chaos-code"><i class="fas fa-code"></i></div>
<div class="chaos-item chaos-server"><i class="fas fa-server"></i></div>
<div class="chaos-item chaos-rocket"><i class="fas fa-rocket"></i></div>
<div class="chaos-item chaos-explosion"><i class="fas fa-bomb"></i></div>
<div class="chaos-item chaos-pizza"><i class="fas fa-pizza-slice"></i></div>
</div>
<div class="hero">
<div class="container">
<div class="hero-content">
<div class="title-explosion">
<h1 class="main-title">
<span class="title-word">DEVOPS</span>
<span class="title-word">CHAOS</span>
<span class="title-word">MASTER</span>
</h1>
<div class="subtitle-glitch">💥 Production-Ready MAYHEM 💥</div>
</div>
<p class="hero-subtitle">
🚀 Deploy faster than your coffee gets cold!
🐢 Scale smoother than a developer's weekend!
💣 Survive CI/CD apocalypses like a BOSS!
</p>
<div class="cta-container">
<a href="#" class="cta-button primary">
<span class="button-text">🚀 LAUNCH APOCALYPSE</span>
<div class="button-glow"></div>
</a>
<a href="#" class="cta-button secondary">
<i class="fas fa-fire"></i> Watch It Burn
</a>
</div>
<div class="stats-explosion">
<div class="stat-item">
<span class="stat-number" data-target="420">420</span>
<span class="stat-label">Deploys/Hour</span>
</div>
<div class="stat-item">
<span class="stat-number" data-target="99.999">99.999</span>
<span class="stat-label">Uptime %</span>
</div>
<div class="stat-item">
<span class="stat-number" data-target="0">0</span>
<span class="stat-label">Tears Shed</span>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>