forked from Jayphen/placeholder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (37 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Placeholder UI behaviours</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<form action="index.html" method="post">
<fieldset>
<legend>Your form</legend>
<p>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name" />
</p>
<p>
<label for="password">Name</label>
<input type="password" id="password" name="password" placeholder="Password" />
</p>
<p>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="[email protected]" />
</p>
<p>
<label for="comments">Comments</label>
<textarea id="comments" rows="10" cols="50" name="comments" placeholder="Your comment(s)"></textarea>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</fieldset>
</form>
<!-- Remove http: from src on live -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="js/jquery.placeholder.js"></script>
</body>
</html>