i’ve done multiple things to make my code work i refreshed it changed my browser still ntg is working
if i add my header element my form element doesn’t work, and if i add my form element my header element doesn’t work please helppppp…
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>landing-page</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header id="header">
<img id="header-img" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png">
<nav id="nav-bar">
<ul>
<li><a class="nav-link" id="how-it-works"href="#how-it-works">How it works</a></li>
<li><a class="nav-link" id="features" href="#features">Features</a></li>
<li><a class="nav-link" id="pricing" href="#pricing">Pricing</a></li>
</ul>
</nav>
</header>
<section id="how-it-works">
<iframe id="video"
height: "315"
src="https://www.youtube-nocookie.com/embed/y8Yv4pnO7qc?rel=0&controls=0&showinfo=0"
allowfullscreen/>
</section>
<form></form>
<div class="container"></div>
<section id="hero">
<h2>Handcrafted, home-made masterpieces</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input id="email" placeholder="Enter your email address" type="email" name="email" required>
<br><input id="submit" type="submit" value="GET STARTED" class="btn"/></br>
</form>
</section>