learnyouhtml
Version:
Learn you how to create your first web-page
12 lines (8 loc) • 1.01 kB
Markdown
# You did this!
Now you know about `<form>` and `<input>` tags, but there is a lot of others. Here are links to learn more:
* `<button>` - a clickable button: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
* `<label>` - represents a caption for an item in a user interface: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
* `<textarea>` - represents a multi-line plain-text editing control: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
* `<fieldset>` - tag is used to group several controls as well as labels within a web form: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
* `<select>` - represents a control that provides a menu of options: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
You know enough about HTML tags, but your pages doesn't look like a real fancy sites you like. That's because you don't use styles and scripts to make these pages more friendly. In the next exercise we're going to fix that.