-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft.html
103 lines (93 loc) · 3.96 KB
/
ft.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
<meta name="title" content=" Sadiq Ullah">
<meta name="description" content="lorem ipsum...">
<meta name="keywords" content="html, html-css, tutorial, html tutorial">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="author" content="Shagor">
<link rel="stylesheet" href="mp.css">
<title>Shagor Portofolio</title>
<link rel="shortcut icon" href="/image/img.jpg">
</head>
<body>
<div class="wrapper">
<form action="#" method="get" enctype="multipart/form-data">
<label for="first_name">First Name</label><br>
<input type="text" placeholder="First name" name="first_name" id="first_name" class="first_name">
<br><br>
<label for="last_name">Last Name</label><br>
<input type="text" placeholder="Last name" name="last_name" id="last_name" class="last_name">
<br><br>
<label for="email">Email</label><br>
<input type="email" placeholder="Email address" name="email" id="email" class="email">
<br><br>
<label for="password">Password</label><br>
<input type="password" placeholder="Password" name="password" id="password" class="password">
<br><br>
<label for="">Gender</label><br>
<input type="radio" name="gender" id=""checked><span>Male</span>
<input type="radio" name="gender" id=""><span>Female</span>
<br><br>
<label for="">Educational Qualification</label><br>
<input type="checkbox" name="SSC" id="#"><span>SSC</span><br>
<input type="checkbox" name="HSC" id="#"><span>HSC</span><br>
<input type="checkbox" name="Degree" id="#"><span>Degree</span><br>
<input type="checkbox" name="Master" id="#"><span>Masters</span><br>
<br><br>
<label for="massage">Your Message</label><br>
<textarea name="message" id="message" cols="98" rows="10" placeholder="Type Your Message" class="message" id="message"></textarea>
<button type="submit">Click Here</button>
<button input="Reset">Reset</button>
</form>
</div>
<div>
<table>
<caption>Student Information</caption>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
<th>Email</th>
</tr>
<tr>
<td>Sadiq</td>
<td>Ullah</td>
<td>27</td>
<td>iamshagor@gmail.com</td>
</tr>
<tr>
<td>Ahsan</td>
<td>Ullah</td>
<td>25</td>
<td>ahsanullahshawon@gmail.com</td>
</table>
<br>
<table>
<tr>
<th colspan="2">Full Name</th>
<th>Age</th>
<th>Email</th>
</tr>
<tr>
<td>Sadiq</td>
<td>Ullah</td>
<td>27</td>
<td>iamshagor@gmail.com</td>
</tr>
<tr>
<td>Ahsan</td>
<td>Ullah</td>
<td>25</td>
<td>ahsanullahshawon@gmail.com</td>
</tr>
</table>
</div>
<br><br><br><br><br><br><br><br><br><br><br>
<h1 class="heading-01">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, assumenda, et, necessitatibus suscipit atque iste eum laboriosam id pariatur accusa</h1>
<h1 class="heading-02">Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti explicabo ut dolore? Doloremque nisi recusandae quibusdam iusto dolor </h1>
</body>
</html>