This repository was archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
47 lines (44 loc) · 1.4 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
46
47
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<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">
<title>Foundation for Sites</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<section>
<div>
<form>
<p>
<label for="firstName">First Name</label>
<input type="text" name="firstName" required>
</p>
<p>
<label for="hairColor">Hair Color</label>
<input type="color" name="hairColor" required>
</p>
<p>
<label for="age">Age</label>
<input type="number" name="age" placeholder="Your Age" required>
</p>
<p>
<label for="birthplace">Birthplace</label>
<input type="text" name="birthplace" placeholder="Where were you born?" required>
</p>
<p>
<button class="button" type="submit">Submit</button>
</p>
</form>
</div>
<div class="details">
</div>
</section>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>