-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (105 loc) · 3.25 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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>Document</title>
</head>
<body>
<!--Headings-->
<h1>Heading one</h1>
<h2>Heading two</h2>
<h3>Heading three</h3>
<h4>Heading four</h4>
<h5>Heading five</h5>
<h6>Heading six</h6>
<!--Paragraph-->
<p><strong><em>A family </em></strong>is a social group of people who stay together under the same roof in a society.
<a href="https://www.google.com/" target="_blank">It comprises</a> two or more adults like parents and grandparents and young children who are bound in a relationship by birth or blood.
They are collectively known as family members.
Each family member is committed to each other in a mutual relationship.
A family holds a special place in the life of an individual and the society in which he/she lives.
In this article, we are going to take you through “My Family Essay for Class 1” kids which will help young minds to learn how to write essays on a similar topic.
</p>
<!--Lists-->
<ul>
<li>List 1</li>
<li>list 2</li>
<li>list 3</li>
<li>list 4</li>
</ul>
<ol>
<li>list 3</li>
<li>list 4</li>
<li>list 5</li>
<li>list 6</li>
</ol>
<!--Table-->
<table>
<thead>
<th>Name</th>
<th>Eamail</th>
<th>Ages</th>
<th>Country</th>
</thead>
</table>
<tbody>
<tr>
<td>Lavy Ka</td>
<td>[email protected]</td>
<td>23</td>
<td>Cambodia</td>
</tr>
</tbody><br><br>
<tbody>
<tr>
<td>Lavy Ka</td>
<td>[email protected]</td>
<td>23</td>
<td>Cambodia</td>
</tr>
</tbody><br><br>
<tbody>
<tr>
<td>Lavy Ka</td>
<td>[email protected]</td>
<td>23</td>
<td>Cambodia</td>
</tr>
</tbody><br><br><hr><br>
<!--Form-->
<form action="process.php" method="GET">
<div>
<label for="">First Name</label>
<input type="text" name="first name" id="firstname">
</div><br><br>
<div>
<label for="">Last Name</label>
<input type="text" name="last name" id="lastname">
</div><br><br>
<div>
<label for="">Email</label>
<input type="email" name="email" id="email">
</div><br><br>
<div>
<label for="">Gender</label>
<select name="gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div><br>
<div>
<label for="">First Name</label>
<textarea name="first name"></textarea>
</div><br><br>
<div>
<label for="">Age:</label>
<input type="number" name="age" value="30">
</div><br>
<label for="">Birthday:</label>
<input type="date" name="birthday">
</form>
</body>
</html>