Skip to content
Open
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
52 changes: 48 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,52 @@
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<title> Intellipaat </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abode Software Web App</title>
<style>
body {
font-family: 'Inter', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f0f2f5;
color: #333;
text-align: center;
}
.container {
background-color: #ffffff;
padding: 40px 60px;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
max-width: 800px;
width: 90%;
border: 1px solid #e0e0e0;
}
h1 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 2.5em;
}
p {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 25px;
}
.highlight {
color: #3498db;
font-weight: bold;
}
</style>
</head>
<body style = "background-image:url('images/github3.jpg'); background-size: 100%">
<h2 ALIGN=CENTER>Hello world!</h2>
<body>
<div class="container">
<h1>Welcome to Abode Software!</h1>
<p>This is the <span class="highlight">product-based web application</span> for Abode Software.</p>
<p>This page demonstrates the successful deployment via our automated <span class="highlight">DevOps Pipeline</span>.</p>
<p>Stay tuned for more exciting features!</p>
</div>
</body>
</html>