-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms-html.html
More file actions
42 lines (37 loc) · 1.1 KB
/
Copy pathforms-html.html
File metadata and controls
42 lines (37 loc) · 1.1 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
Weekly task 1
</title>
<style>
</style>
</head>
<body>
<p><u>Forms</u></p>
<forms>
<label for="fname">First Name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last Name:</label><br>
<input type="text" id="lname" name="lname"><br>
<label for="email">E-Mail:</label><br>
<input type="text" id="email" name="email"><br>
<label for="message">Message:</label><br>
<input type="text" id="message" name="message"><br>
</forms>
<p><u>Table</u></p>
<table>
<tr>
<th>Roll No.</th>
<th>Name</th>
<th>Department</th>
</tr>
<tr>
<td>2302CS05</td>
<td>Pragya</td>
<td>CSE</td>
</tr>
</table><br>
<p><u>Image</u></p>
<img src="images/th.jpg" alt="Image not found">
</html>