This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
66 lines (61 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SkyLabels.js - Fun, Compact and Accessible Forms</title>
<meta name="description" content="SkyLabels - Fun, Compact and Accessible HTML forms.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="vendor/stylesheets/normalize.css">
<link rel="stylesheet" href="stylesheets/application.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/slider.js"></script>
</head>
<body>
<header>
<section class="container">
<section class="logo">
<h1>SkyLabels.js</h1>
<h3>Fun, Compact & Accessible Forms</h3>
</section>
<section class="outbound-buttons">
<a href="https://github.com/thoughtbot/slider" class="bordered-button">View on GitHub</a>
</section>
</section>
<section class="fake-web-page">
<section class="window-bar">
<div class="window-bar-button"></div>
<div class="window-bar-button"></div>
<div class="window-bar-button"></div>
</section>
<section class="window-content">
<section class="try-it-out">
<h3>Try it out!</h3>
<form>
<section class="field-wrapper">
<label for="first-name">First name</label>
<input name="first-name" id="first-name" type="text" autocomplete="off" autofocus>
</section>
<section class="field-wrapper">
<label for="last-name">Last name</label>
<input name="last-name" id="last-name" type="text" autocomplete="off">
</section>
<section class="field-wrapper">
<label for="notes">Notes</label>
<textarea rows="3" name="notes" id="notes"></textarea>
</section>
</form>
</section>
<section class="benefits">
<h3>Why SkyLabels.js?</h3>
<ul>
<li>Totally customizable through CSS.</li>
<li>Accessible (uses a label element).</li>
<li>Doesn't require that you change your layout. The labels slide above all other content.</li>
<li>Easy to read the labels even when the input is focused.</li>
</section>
</section>
</section>
</header>
</body>
</html>