-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_1.html
93 lines (76 loc) · 2.41 KB
/
index_1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>From and Table</title>
<link rel="stylesheet" href="./css/style_1.css">
</head>
<body>
<h1>Lorem ipsum dolor, sit amet</h1>
<h1 class="h1">Lorem ipsum dolor, sit amet</h1>
<h2>Lorem ipsum dolor, sit amet</h2>
<h3>Lorem ipsum dolor, sit amet</h3>
<div class="first-div"></div>
<h1 class="h1_">From Create</h1>
<!--This is html From-->
<div class="warapper">
<label for="name"> First Name:</label><br>
<input type="text" placeholder="Type your Name" class="name" id="name"><br><br>
<label for="Last Name"> Last Name:</label><br>
<input type="text" placeholder="Type your Name" class="name" id="Last Name"><br><br>
<label for="email">Email</label><br>
<input type="email" placeholder="Type Your email" class="name" id="email"><br><br>
<label for="password">Password:</label><br>
<input type="password" placeholder="Type your password" class="name" id="password"><br><br>
<label for="gender">Gender:</label><br>
<input type="radio" name="gender" id="gender" class="gender">Male <br>
<input type="radio" name="gender" id="gender">Female <br><br>
<label for="skill">Select Skill:</label><br>
<input type="checkbox" name="service" id="skill">Html<br>
<input type="checkbox" name="service" id="skill">Css<br>
<input type="checkbox" name="service" id="skill">Bootstrap<br><br>
<label for="massege">Massege:</label><br>
<textarea name="" id="massege" cols="30" rows="10" placeholder="Type your massage" class="name"></textarea><br>
<button type="submit">Submit</button>
<button type="reset">Reset Your Data</button><br>
</div><br>
<h1 class="t-h1">Table Create</h1>
<!--This is table-->
<table>
<tr>
<th>NO.</th>
<th>Name</th>
<th>Address</th>
<th>Email Address</th>
<th>Age</th>
</tr>
<tr>
<td>1.</td>
<td>Shahinur</td>
<td>Tangail</td>
<td rowspan="2">shahinur@gmail.com</td>
<td>22</td>
</tr>
<tr>
<td colspan="2">Ruble</td>
<td>Tangail</td>
<td>40</td>
</tr>
<tr>
<td>3.</td>
<td>Attiqur</td>
<td>Tangail</td>
<td>Attiqur@gmail.com</td>
<td>35</td>
</tr>
<tr>
<td>4.</td>
<td>Rony</td>
<td>Tangail</td>
<td>Rony@gmail.com</td>
<td>50</td>
</tr>
</table>
</body>
</html>