-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-4.html
215 lines (167 loc) · 5.93 KB
/
index-4.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!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">
<!-- this is the used tags which might be helpful -->
<meta name="description" content="this is description">
<meta name="keywords" content="html,css,vishal">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<title>index#4</title>
</head>
<body>
<!-- hello world
wssup br
learnig css
<br>sadfs
<ul type="circle">
<li>first </li>
<li>second</li>
<ul type="square">
<li>second part 2</li>
</ul>
</ul> -->
<!-- table -->
<h1 align="center">Practice-Vishal.k</h1>
<div class="container" >
<!-- table div
-->
<div>
<table cellpadding="12" border="1" cellspacing="2">
<thead bgcolor="brown ">
<tr>
<th>Name</th>
<th>UID</th>
<th>Branch</th>
<th>Semester</th>
</tr>
</thead>
<tbody>
<tr>
<td> <center> <strong>Vishal Kumar Geed </strong> </center> <center> <img src="vishal.jpeg" alt="" width="160"> </center> </td>
<td>21BCS10800</td>
<td>CSE</td>
<td>2nd</td>
</tr>
<tr>
<td> <center> <strong>Sudhanshu Gautam</strong> </center> <img src="sudhanshu.jpeg" alt="" width="160"> </td>
<td>21BCS10730</td>
<td>CSE</td>
<td>2nd</td>
</tr>
</tbody>
</table>
</div>
<!--
image div
-->
<div class="image">
<img src="pubg.jpeg" alt="pubg image" width="190" >
</div>
<!-- <br>
<br> -->
<!--
form div
-->
<div class="form" >
<div class="info">
<h2>Info</h2>
</div>
<form action="mailto:vishalkumarvkvk977@gmail" method="post" enctype="text/plain" >
<!-- nAME -->
<label for="name">Name: </label>
<input type="text" name="M yname" id="name">
<br>
<br>
<!-- UID -->
<label for="uid">UID: </label>
<input type="text" name="UID" id="uid">
<br>
<br>
<!-- BRANCH -->
<label for="branch">
Branch: <input type="text" name="Branch" id="branch">
</label>
<!-- gender -->
<br>
<br>
<label for="gender" align="left">
Gender:
<input type="radio" name="Gender" id="gender">Male <input type="radio" name="Gender" id="gender">Female
</label>
<br><br>
<!-- year -->
<label for="year">
Year: <input type="number" name="year" id="year">
</label>
<br><br>
<!-- Date OF Birth-->
<label for="dob">
Date Of Birth: <input type="date" name="dob" id="dob" >
</label>
<br><br>
<!-- Github Link -->
<label for="github">
Github/Linkedin link: <br>
<input type="url" name="github" id="github">
</label>
<br><br>
<!-- email -->
<label for="email">
Email: <input type="email" name="email" id="email">
</label>
<!-- check box-->
<br>
<label for="info">
<input type="checkbox" name="info" id="info" checked> Get notified for our future <em>Updates</em>
</label>
<!-- select -->
<br><br>
<label for="select">
Mode Preference: <select name="Mode" id="select">
<option value="Online" selected> Online</option>
<option value="Offline"> Offline</option>
<option value="Not Decided" > Not Decided</option>
</select>
</label>
<!-- avator -->
<br><br>
<label for="avator">
Upload Profile Pic: <input type="file" name="Avator" id="avator">
</label>
<br> <br>
<label for="suggestion">
Any suggestion: <br>
<textarea name="suggestion" id="suggestion" cols="30" rows="10"></textarea>
</label>
<!-- submit -->
<br>
<br>
<label for="submit">
<input type="submit" value="SUBMIT"> OR <input type="reset" value="Reset">
</label>
<br><h3>Thank You</h3>
</form>
</div>
</div>
<br>
<br>
<!--
<img src="deer.jpg" alt="deer image" height="500" >
-->
<button >
<a href="table.html">
<button>
See Table
</button>
</a>
</button>
<Footer >
<h3 align="center">
Made by Vishal .k
</h3>
</Footer>
</body>
</html>