-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 925 Bytes
/
index.html
File metadata and controls
41 lines (41 loc) · 925 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome 🎉</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(to right, #1f4037, #99f2c8);
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
background: rgba(0, 0, 0, 0.3);
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>🎉 Welcome to your application!</h1>
<p>Deployed with <strong>Argo CD</strong> + <strong>Minikube</strong></p>
<p>Everything is working perfectly</p>
</div>
</body>
</html>