Help with HTML please/?

C Plus Plus

New member
I am learning html, i get these questions wrong on the w3c website, can you help?

Which of these tags are all <table> tags?

<table><tr><td>
<table><head><tfoot>
<thead><body><tr>
<table><tr><tt>

How can you make a list that lists the items with bullets?

<dl>
<ul>
<ol>
<list>

What is the correct HTML for making a text input field?

<input type="textfield" />
<textinput type="text" />
<input type="text" />
<textfield>


What is the correct HTML for making a drop-down list?

<input type="dropdown" />
<input type="list" />
<list>
<select>
What is the correct HTML for making a text area?

<textarea>
<input type="textbox" />
<input type="textarea" />
 
Back
Top