-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·70 lines (66 loc) · 2.23 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Pineput - Beautiful forms, zero effort.</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>
form {
max-width: 620px;
}
</style>
<link rel="stylesheet" href="jquery.pineput.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.pineput.js"></script>
</head>
<body>
<div class="container">
<main>
<section class="hero">
<div class="table">
<div class="cell">
<h1 class="serif">Pineput</h1>
<p>Beautiful forms, zero effort. jQuery Apple inspired form plugin.</p>
<form>
<div class="input-field-group">
<div class="input-field">
<label>First Name</label>
<input type="text">
</div>
<div class="input-field">
<label>Last Name</label>
<input type="text">
</div>
</div>
<div class="input-field">
<label>Your e-mail</label>
<input type="email" />
</div>
<div class="input-field">
<label>Topic</label>
<select>
<option></option>
<option>Topic 1</option>
<option>Topic 2</option>
<option>Topic 3</option>
</select>
</div>
<div class="input-field">
<label>Message</label>
<textarea></textarea>
</div>
</form>
</div>
</div>
</section>
</main>
</div>
<script type="text/javascript">
jQuery(document).ready(function() {
$('form').pineput();
});
</script>
</body>
</html>