1<form>
2 <input type="button">
3 <input type="checkbox">
4 <input type="color">
5 <input type="date">
6 <input type="datetime-local">
7 <input type="email">
8 <input type="file">
9 <input type="hidden">
10 <input type="image">
11 <input type="month">
12 <input type="number">
13 <input type="password">
14 <input type="radio">
15 <input type="range">
16 <input type="reset">
17 <input type="search">
18 <input type="submit">
19 <input type="tel">
20 <input type="text">
21 <input type="time">
22 <input type="url">
23 <input type="week">
24</form>
1<!-- A <textarea> tag (better for multi-line text)-->
2<textarea cols="4" rows="5">
3Some text inside the text box.
4See https://www.w3schools.com/tags/tag_textarea.asp
5</textarea>
6
7<!-- An <input> type text tag (better for single-line text) -->
8<input type="text" value="Some text inside the text box">
9<!-- See https://www.w3schools.com/tags/att_input_type_text.asp -->
10
11<!-- Using contenteditable (not recommended) -->
12<p contenteditable="true">Some text inside the text box</p>
13<!-- See https://www.w3schools.com/tags/att_global_contenteditable.asp -->
1button
2checkbox
3color
4date
5datetime-local
6email
7hidden
8image
9month
10number
11password
12radio
13range
14reset
15search
16submit
17tel
18text
19time
20url
21week
1<!-- input tags are self-closing tags -->
2<!-- If in the form you want a required input, just put required at the end -->
3<!-- like this: <input type="text" required/> -->
4<form>
5 <input type="button">
6 <input type="checkbox">
7 <input type="color">
8 <input type="date">
9 <input type="datetime-local">
10 <input type="email">
11 <input type="file">
12 <input type="hidden">
13 <input type="image">
14 <input type="month">
15 <input type="number">
16 <input type="password">
17 <input type="radio">
18 <input type="range">
19 <input type="reset">
20 <input type="search">
21 <input type="submit">
22 <input type="tel">
23 <input type="text">
24 <input type="time">
25 <input type="url">
26 <input type="week">
27</form>
28
1<input type="button">
2<input type="checkbox">
3<input type="color">
4<input type="date">
5<input type="datetime-local">
6<input type="email">
7<input type="file">
8<input type="hidden">
9<input type="image">
10<input type="month">
11<input type="number">
12<input type="password">
13<input type="radio">
14<input type="range">
15<input type="reset">
16<input type="search">
17<input type="submit">
18<input type="tel">
19<input type="text">
20<input type="time">
21<input type="url">
22<input type="week">