Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

HTML validation is not passing, please help me! html: <!DOCTYPE html> <html lang

ID: 3600144 • Letter: H

Question

HTML validation is not passing, please help me!

html:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Weekly News</title>
<meta charset="UTF-8">
<meta content="width=device-width,initial-scale=1.0,shrink-to-fit=no" name="viewport">
<link href="./css/screen.css" media="screen" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+ProSpace+Mono:700" rel="stylesheet">
</head>
<body>
<figure id="background-img">
<img src="img/color.jpg" alt="Background Image ">

</figure>


<h1>Sign Up for our News Letter!</h1>
<h2 class="center">Why Join?</h2>
<ul class="reasons-list">
<li>Weekly news of crimes of Chicago!</li>
<li>Weekly news of recent technology!</li>
<li>Weekly released movies & TV shows!</li>

<li>Please fill in the boxes if you like to get started!</li>
</ul>
  
  
<form action="#null" autocomplete=”on” class="center inner" id="newsletter" method="get" name="newsletter">
  
<ol>
<li id="input-email">
<input id="email" name="email" placeholder="you@example.com" type="email"> <input id="name" name="name" placeholder="first name" type="text">

<ul class="reasons-list">
<li>
<div class="checkMidd">
<span class="checkLeft"><input id="age" name="age" type="checkbox"></span> <span class="checkRight">I am 18 years or older:</span> <input id="submit" name="submit" type="submit" value="Register me now!!">
</div>
</li>
</ul>
</li>
</ol>
</form>


<p id="approved">
</p>

Error Bad value "on" for attribute autocomplete on element form From line 28, column 1:to line 28, column 107 p

Explanation / Answer

There is no value for autocomplete.

If you want autocomplete on, then simply put the autocomplete keyword in that line.

Ex: <form action="#null" autocomplete class="center" id="Id1" method="get" name="name">