-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (32 loc) · 1.25 KB
/
Copy pathexample.html
File metadata and controls
39 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html>
<!--<![endif]-->
<head>
<title></title>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" href="FloatingLabels.min.css">
<!--[if lte IE 8]><script src="js/libs/respond.min.js"></script><![endif]-->
</head>
<body class="">
<form action="" method="" class="floating-labels" role="">
<div class="form-group">
<input type="text" name="text" id="text" placeholder="Name Here" />
<label for="text">Name Here</label>
</div>
<div class="form-group">
<input type="email" name="email" id="email" placeholder="Email Address" />
<label for="email">Email Address</label>
</div>
<div class="form-group">
<input type="text" name="username" id="username" placeholder="Username" />
<label for="username">Username</label>
</div>
</form>
</body>
</html>