-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeform.html
More file actions
45 lines (39 loc) · 1.18 KB
/
theform.html
File metadata and controls
45 lines (39 loc) · 1.18 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
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-06-01">
<title>Lab 3 Fun with Forms</title>
</head>
<body>
<header>Lab 3 Fun with Forms</header>
<form action="" method="post">
<input type="text" name="Henry" id="thisValue"><br>
<button type="submit">Hey! Press Me</button>
</form>
<table class="lined">
<tr class="lined">
<td class="lined">e</td>
<td class="lined">e</td>
<td class="lined">e</td>
<td class="lined">e</td>
</tr>
<tr class="lined">
<td class="lined">f</td>
<td class="lined">f</td>
<td>f</td>
<td class="lined">f</td>
</tr>
<tr class="lined">
<td class="lined">g</td>
<td class="lined">g</td>
<td>g</td>
<td>g</td>
</tr>
</table>
<a href="mailto:somemail@gmail.com">somemail@gmail.com</a>
</body>
</html>