HTML Forms:

* label, br, input with different types
vs2019/3_HTML5_and_CSS_Basics
jason.zhu 2021-04-22 22:14:05 +10:00
parent a14623dc24
commit 5af243aff3
1 changed files with 30 additions and 0 deletions

View File

@ -18,5 +18,35 @@
</ul> </ul>
<button>Buy</button> <button>Buy</button>
</div> </div>
<form>
<label>Your Name:</label>
<br />
<input />
<br />
<label>Email:</label>
<br />
<input type="email"/>
<br />
<label>Subject:</label>
<br />
<input type="text" />
<br />
<label>Password:</label>
<br />
<input type="password" />
<br />
<label>Message</label>
<br />
<textarea rows="4"></textarea>
<br />
<input type="submit" value="Send Message"/>
</form>
</body> </body>
</html> </html>