Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions 3-Docker/app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevOps the Hard Way</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.container {
text-align: center;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
max-width: 90%;
width: 400px;
}
h1 {
color: #2d3748;
margin-bottom: 1rem;
font-weight: 600;
font-size: 1.8rem;
}
p {
color: #4a5568;
margin-bottom: 2rem;
font-size: 1rem;
line-height: 1.5;
}
.logo {
width: 80px;
height: 80px;
margin-bottom: 1.5rem;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #4299e1;
color: white;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 600;
font-size: 1rem;
}
.button:hover {
background-color: #3182ce;
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(66, 153, 225, 0.3);
}
@media (max-width: 480px) {
.container {
padding: 1.5rem;
}
h1 {
font-size: 1.5rem;
}
p {
font-size: 0.9rem;
}
.button {
padding: 10px 20px;
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Hello, World from thomasthornton.cloud</h1>
<p>Explore DevOps the Hard Way Azure: Hands-on learning for real-world skills.</p>
<a href="https://github.com/thomast1906/DevOps-The-Hard-Way-Azure" class="button">Start Learning</a>
</div>
</body>
</html>
Loading