A simple website about Batman and why he is my favorite superhero.
A simple website build using CSS
and HTML
, the goal is learning development strategy and project management.
- HTML
- CSS
- VS code
open index.html in your browser and enjoy!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My favorite Super Hero</title>
</head>
<body>
<!-- Title -->
<header>
<h1>My Favorite Super Hero Batman</h1>
</header>
<!-- Content -->
<div class="content">
<h2>Why do I think Batman is the coolest Super hero?</h2>
<p>
I think Batman is the coolest super hero, because he has no super power despite that, he is the best.
He is fighting criminals and try to make his city a better place.
</p>
</div>
<!-- Images -->
<div class="batman-img">
<img src="assets/batman.webp" alt="Batman">
</div>
<!-- footer -->
<footer>
<p>
© 2022, Batman's fan. All rights reserved.
</p>
</footer>
</body>
</html>
List of features ready and TODOs for future development
To-do list:
Project is: in progress
By @HYF-team