Fix the HTML
HTML
Easy
Objective
Fix the below HTML
Requirements
Fix the below HTML in accordance with best practices
Identify and repair any accessibility concerns
Starting code
<!DOCTYPE html>
<html>
<head>
<title>Broken Web Page<title>
<style>
body { font-family: Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to Our Site</h1>
<image src="logo.png"></image>
<div id="nav">
<a href="home">Home</a> |
<a href="about">About Us</a> |
<a href="contact">Contact</a>
</div>
<main>
<article>
<h2>About Us<h2>
<p>We are a web development company.</p>
<article>
<section id="contact">
<h3>Contact Us</h3>
<form>
<label for="name">Name:</label>
<input type="text" id="names">
<label for="email">Email:</label>
<input type="text" id="email">
<input type="checkbox" id="subscribe">
<label>Subscribe to newsletter</label>
<input type="submit value="Submit">
</form>
</section>
<footer>
<img src="facebook-icon.png">
<img src="twitter-icon.png">
<img src="linkedin-icon.png">
<div onclick="javascript:submitForm();">Submit</div>
</footer>
</body>
</html>