Answers for "a page with html cheat sheet"

0

a page with html cheat sheet

<form action="/action.php" method="post">
Name: <input name="name" type="text" /> <br /> 
Age: <input max="99" min="1" name="age" step="1" type="number" value="18" /> <br />
<select name="gender">
	<option selected="selected" value="male">Male</option>
	<option value="female">Female</option>
</select><br /> 
<input checked="checked" name="newsletter" type="radio" value="daily" /> Daily <input name="newsletter" type="radio" value="weekly" /> Weekly<br />
<textarea cols="20" name="comments" rows="5">Comment</textarea><br />
<label><input name="terms" type="checkbox" value="tandc" />Accept terms</label> <br />
<input type="submit" value="Submit" />
</form>
Posted by: Guest on October-25-2021
0

a page with html cheat sheet

<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ul>
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language