<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Index Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 1em;
text-align: center;
}
main {
padding: 1em;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>I am learning Ansible with Abhishek Veeramalla</h1>
</header>
<main>
<h2>Ansible Zero to Hero Series</h2>
<p> This is my First Ansible Playbook, Where I learnt how to deploy a static app on ec2 instance using Ansible. </p>
<p>For more information, visit www.youtube.com/abhishekveeramalla</p>
</main>
<footer>
<p>© 2024 Abhishek.Veeramalla</p>
</footer>
</body>
</html>