HTML Forms:

* label, br, input with different types
This commit is contained in:
jason.zhu 2021-04-22 22:14:05 +10:00
parent a14623dc24
commit 5af243aff3

View File

@ -18,5 +18,35 @@
</ul>
<button>Buy</button>
</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>
</html>