I am working on a website and I have the logo in the top left of the screen. The title for the page should be centered on the page but because of the image, it is being pushed to the right. The code I have in CSS and in HTML is:
#logo {
padding: 20px;
float: left;
}
h1 {
text-align: center;
padding: 25px;
font-size: 75px;
}
<body>
<img id="logo" src="logo.png">
<h1>Home Page</h1>
</body>
Any ideas how to fix this issue?