Skip to content

Commit 657c3d2

Browse files
author
lintsang
committed
html form created
1 parent ff7b9d0 commit 657c3d2

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

Form-Controls/index.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,24 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6-
<title>My form exercise</title>
6+
<title>Sprint 1 form controls exercise</title>
77
<meta name="description" content="" />
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
</head>
1010
<body>
1111
<header>
12-
<h1>Product Pick</h1>
12+
<h1>Insert Your Name Below</h1>
1313
</header>
1414
<main>
1515
<form>
16-
<!-- write your html here-->
17-
<!--
18-
try writing out the requirements first as comments
19-
this will also help you fill in your PR message later-->
16+
<label for="fullname"> Name: </label>
17+
<input type="text" name="fullname" id="fullname" required maxlength="100">
18+
<button>Submit</button>
2019
</form>
2120
</main>
2221
<footer>
2322
<!-- change to your name-->
24-
<p>By HOMEWORK SOLUTION</p>
23+
<p>By Lin Tsang</p>
2524
</footer>
2625
</body>
2726
</html>

0 commit comments

Comments
 (0)