generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathresults.html
More file actions
40 lines (37 loc) · 1.08 KB
/
results.html
File metadata and controls
40 lines (37 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My form exercise</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<Form action="results.html" method="GET"
<div>
<label for="name">Name</label>
<input type="text" name="name" id="name" required
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" required>
</div>
<div>
<label for ="Size">Size</label>
<input type="text" name="size" id="size" required>
</div>
<button type="submit">Submit</button>
</Form>
<h1> </h1>
</header>
<main>
<!-- write your html here-->
<!--
try writing out the requirements first as comments
this will also help you fill in your PR message later-->
</form>
</main>
<footer>
<h2>Seti Mussa</h2>
</footer>