Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

HTML Level 8, Lesson 7 problem

Level 8 Lesson 7:

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="radio" name="time" value="day"/>
<label> Day </label>
<input type="radio" name="time" value="day"/>
<label>Night</label>
</form>
</body>
</html>

This is my code and I believe it is correct but the program doesn't let me move to the next level.
by

3 Answers

kshitijrana14
 <!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="radio" name="time" value="day"/>
<label> Day </label>
<input type="radio" name="time" value="night"/>
<label>Night</label>
</form>
</body>
</html>
Ibnulj452s
thanks a lot for the answer! Cheers!
jarixa
Thanks for your help!!!

Login / Signup to Answer the Question.