63 lines
1.7 KiB
HTML
63 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tekton Demo-</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, sans-serif;
|
|
background: linear-gradient(135deg, #e0f7fa, #e1f5fe);
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
background: white;
|
|
padding: 40px 60px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
|
|
max-width: 500px;
|
|
width: 90%;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
color: #007acc;
|
|
margin-bottom: 15px;
|
|
}
|
|
p {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 25px;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 12px 25px;
|
|
background-color: #007acc;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.btn:hover {
|
|
background-color: #005fa3;
|
|
}
|
|
.emoji {
|
|
font-size: 3rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="emoji">🚀</div>
|
|
<h1>✅ Hello Tekton CI/CD!</h1>
|
|
<p>Your application has been successfully built and deployed using Tekton Pipeline.</p>
|
|
<a href="#" class="btn">Learn More</a>
|
|
</div>
|
|
</body>
|
|
</html>
|