forked from codrops/ResponsiveMultiColumnForm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·86 lines (86 loc) · 4.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blueprint: Responsive Multi-Column Form</title>
<meta name="description" content="Blueprint: Blueprint: Responsive Multi-Column Form" />
<meta name="keywords" content="responsive form, inputs, html5, responsive, multi-column, fluid, media query, template" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div class="container">
<header class="clearfix">
<span>Blueprint <span class="bp-icon bp-icon-about" data-content="The Blueprints are a collection of basic and minimal website concepts, components, plugins and layouts with minimal style for easy adaption and usage, or simply for inspiration."></span></span>
<h1>Responsive Multi-Column Form</h1>
<nav>
<a href="http://tympanus.net/Blueprints/TooltipMenu/" class="bp-icon bp-icon-prev" data-info="previous Blueprint"><span>Previous Blueprint</span></a>
<a href="http://tympanus.net/Blueprints/AnimatedHeader/" class="bp-icon bp-icon-next" data-info="next Blueprint"><span>Next Blueprint</span></a>
<a href="http://tympanus.net/codrops/?p=15320" class="bp-icon bp-icon-drop" data-info="back to the Codrops article"><span>back to the Codrops article</span></a>
<a href="http://tympanus.net/codrops/category/blueprints/" class="bp-icon bp-icon-archive" data-info="Blueprints archive"><span>Go to the archive</span></a>
</nav>
</header>
<div class="main">
<form class="cbp-mc-form">
<div class="cbp-mc-column">
<label for="first_name">First Name</label>
<input type="text" id="first_name" name="first_name" placeholder="Jonathan">
<label for="last_name">Last Name</label>
<input type="text" id="last_name" name="last_name" placeholder="Doe">
<label for="email">Email Address</label>
<input type="text" id="email" name="email" placeholder="[email protected]">
<label for="country">Country</label>
<select id="country" name="country">
<option>Choose a country</option>
<option>France</option>
<option>Italy</option>
<option>Portugal</option>
</select>
<label for="bio">Biography</label>
<textarea id="bio" name="bio"></textarea>
</div>
<div class="cbp-mc-column">
<label for="phone">Phone Number</label>
<input type="text" id="phone" name="phone" placeholder="+351 999 999">
<label for="affiliations">Affiliations</label>
<textarea id="affiliations" name="affiliations"></textarea>
<label>Occupation</label>
<select id="occupation" name="occupation">
<option>Choose an occupation</option>
<option>Web Designer</option>
<option>Web Developer</option>
<option>Hybrid</option>
</select>
<label for="cat_name">Cat's name</label>
<input type="text" id="cat_name" name="cat_name" placeholder="Kitty">
<label for="gagdet">Favorite Gadget</label>
<input type="text" id="gagdet" name="gagdet" placeholder="Annoy-a-tron">
</div>
<div class="cbp-mc-column">
<label>Type of Talent</label>
<select id="talent" name="talent">
<option>Choose a talent</option>
<option>Ninja silence</option>
<option>Sumo power</option>
<option>Samurai precision</option>
</select>
<label for="drink">Favorite Drink</label>
<input type="text" id="drink" name="drink" placeholder="Green Tea">
<label for="power">Special power</label>
<input type="text" id="power" name="power" placeholder="Anti-gravity">
<label for="weapon">Weapon of choice</label>
<input type="weapon" id="weapon" name="weapon" placeholder="Lightsaber">
<label for="comments">Comments</label>
<textarea id="comments" name="comments"></textarea>
</div>
<div class="cbp-mc-submit-wrap"><input class="cbp-mc-submit" type="submit" value="Send your data" /></div>
</form>
</div>
</div>
</body>
</html>