-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial-2.html
56 lines (54 loc) · 1.51 KB
/
tutorial-2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tutorial-2</title>
</head>
<body>
<h4>Unordered List</h4>
<ul>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ul>
<h4>Ordered List</h4>
<ol>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
<li>List of HTML</li>
<table>
<thead>
<tr> <th>Table in HTML</th> </tr>
</thead>
<tbody>
<tr><td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td></tr>
<tr><td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td></tr>
<tr><td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td></tr>
</tbody>
</table>
<h2>This is HTML form </h2>
<form action="backend.php">
<div>
Name:<input type="text" value="my name"></div>
<div>Role:<input type="text" name="my role"></div>
<div>Date: <input type="date" name="mydate"></div>
<div>Reset : <input type="reset" name="reset now"></div>
<div> write somethig: <textarea name="myText" cols="40" rows="30"></textarea></div>
<div><input type="submit" value="submit now"></div>
</form>
</body>
</html>