-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.34 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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>
<div class="row">
<div class="small-10 small-offset-1 medium-5 columns">
<form action="" method="post">
<div class="row">
<div class="medium-12 columns">
<label>Name</label>
<input type="text" name="name" placeholder="Your Name" required />
</div>
<div class="medium-12 columns">
<label>Hair Color</label>
<input type="color" name="color" required />
</div>
<div class="medium-12 columns">
<label>Age</label>
<input type="number" name="age" placeholder="Your Age" required />
</div>
<div class="medium-12 columns">
<label>Birthplace</label>
<input type="text" name="birthplace" placeholder="Where were you born?" required />
</div>
</div>
<button class="button success expanded">Submit</button>
</form>
</div>
<div class="small-11 medium-5 columns">
<div class="row details">
<div class="medium-12 columns">
<dl>
<dt>Name:</dt>
<dd>Alex Overbeck</dd>
<dt>Hair Color:</dt>
<dd>#000000</dd>
<dt>Age:</dt>
<dd>28</dd>
<dt>Birthplace:</dt>
<dd>Remington, IN.</dd>
</dl>
</div>
<div class="medium-12 columns">
<dl>
<dt>Name:</dt>
<dd>Dave Strus</dd>
<dt>Hair Color:</dt>
<dd>#000000</dd>
<dt>Age:</dt>
<dd>30</dd>
<dt>Birthplace:</dt>
<dd>Not Remington, IN.</dd>
</dl>
</div>
</div>
</div>
</div>
<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>