Attributes and Elements
Although rarely used, some attributes to this form are :
- Accept-charset
- Autocomplete
- Rel
- target
And many more, which can inevitably be done by inserting CSS.
One interesting attribute is the placeholder. It specifies a short hint that describes the expected value of an input field.
<input placeholder="Hello Dear Reader!">
Let us look at some interesting elements:
The <label> element : This represents a caption for an item in a user interface.
<label>Click me <input type="text"></label>
The <button> element : This represents a clickable button, used to submit forms or anywhere in a document for accessible
<button name="button">Press me</button>
Here's what it looks like when we try it out :

Here is a small idea of how a basic form with html and a bit of css looks like : https://codepen.io/vanshi/pen/xxRvRzL
6
