top of page

Immortal Ideas
Let's align the text on the red background to the centre. (On a side note, every programming language including HTML supports US English only. Don't use UK English.)
<!DOCTYPE html>
<html>
<head>
<style>
img.hero {
width:100%; height:auto
}
#Firstheading {
background-color: crimson;
color: white;
padding-bottom: 25px;
padding-top: 25px;
text-align: center;
}
</style>
</head>
<body>
<h1 ID="Firstheading">Mars Calling. Get Your Tickets Now!</h1>
<img class="hero" src="Images/Mars-Photo.jpg">
</body>
</html>

bottom of page