Am having issues spacing down the personal view from the status. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Am having issues spacing down the personal view from the status.

<div> <label>Relationship status</label> <select status = "Relationsip status"/> <option value = "single">Single</option> <option value = "dating">Dating</option> <option value = "engage">Engage</option> <option = "married">Married</option> </div> <br /> <div> <label>Personal view:</label> <textarea name = "personal view"></textarea> </div>

21st Jul 2019, 12:20 AM
ADEBISI MAYOWA
1 Answer
+ 3
ADEBISI MAYOWA I think you have forget to close the select tag This works fine <div> <label>Relationship status</label> <select status = "Relationsip status"> <option value = "single">Single</option> <option value = "dating">Dating</option> <option value = "engage">Engage</option> <option = "married">Married</option> </select> </div> <br /> <div> <label>Personal view:</label> <textarea name = "personal view"></textarea> </div>
21st Jul 2019, 3:43 AM
deeyae
deeyae - avatar