-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·173 lines (143 loc) · 8.2 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Project </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="../css/vendor.css">
<link rel="stylesheet" href="../css/app.css">
<script src="../js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a
href="http://browsehappy.com/">Upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Header -->
<header role="banner" class="header"></header>
<!-- Main-body-container -->
<main class="main-container">
<!--Grid-Layout-->
<div class="grid-wrapper">
<div class="grid">
<div class="row">
<!-- For column width, use col-n-of-p. By default, p can be 4, 8, or 12 -->
<div class="col col-2-of-8 col-m-1-of-4 col-s-1-of-2">1</div>
<div class="col col-2-of-8 col-m-1-of-4 col-s-1-of-2">2</div>
<div class="col col-2-of-8 col-m-1-of-4 col-s-1-of-2">3</div>
<div class="col col-2-of-8 col-m-1-of-4 col-s-1-of-2">4</div>
</div>
<div class="row">
<!-- The center class centers the column. -->
<div class="col col-7-of-12 center">1</div>
</div>
<div class="row">
<!-- The w-auto class makes the columns share the width that's left over -->
<div class="col col-5-of-12">1</div>
<div class="col w-auto">2</div>
<div class="col w-auto">3</div>
</div>
<div class="row">
<!-- use col-m- and col-s- as well as m-hide, s-hide, m-only and s-only to make your grid responsive -->
<div class="col col-2-of-8 col-m-1-of-4 col-s-1-of-2">1</div>
<div class="col col-3-of-8 col-m-2-of-4 col-s-1-of-2">2</div>
<div class="col col-1-of-8 m-hide">3</div>
<div class="col col-2-of-8 col-m-1-of-4 s-hide">4</div>
</div>
<div class="row">
<div class="col col-1-of-4">1</div>
<div class="col col-1-of-2">2</div>
<div class="col col-1-of-4">3</div>
</div>
<div class="row">
<!-- Pushes and pulls are used in the same way as col-n-of-p. They can also be responsive, like pull-m-1-of-4 -->
<div class="col col-1-of-8">1</div>
<div class="col col-2-of-8 push-2-of-12">2</div>
<div class="col col-3-of-8 pull-1-of-12">3</div>
</div>
</div>
</div>
<!--Form-Layout-->
<div class="form-wrapper">
<div class="grid">
<label class="label" for="anrede">Anrede</label>
<select class="select" id="anrede" name="anrede">
<option selected disabled>-</option>
<option value="frau">Frau</option>
<option value="herr">Herr</option>
</select>
<label class="label" for="wohnort">Wohnort</label>
<select class="select" id="wohnort" name="wohnort" disabled>
<option value="frau">Deutschland</option>
<option value="herr">Frankreich</option>
</select>
<label class="label" for="vorname">Vorname</label>
<input class="input" id="vorname" name="vorname" type="text" autocorrect="off" autocomplete="given-name" placeholder="Max">
<label class="label" for="nachname">Nachname</label>
<input class="input" id="nachname" name="nachname" type="text" autocorrect="off" autocomplete="family-name" placeholder="Mustermann">
<label class="label" for="firma">Firma</label>
<input class="input" id="firma" name="firma" type="text" autocorrect="off" autocomplete="organization" placeholder="Musterfirma">
<label class="label" for="strassehausnummer">Straße / Hausnummer</label>
<input class="input" id="strassehausnummer" name="strassehausnummer" type="text" autocorrect="off" autocomplete="address-line1" placeholder="Musterstraße 1">
<label class="label" for="plz">PLZ</label>
<input class="input" id="plz" name="plz" type="text" pattern="\d*" novalidate autocorrect="off" autocomplete="postal-code" placeholder="12345">
<label class="label" for="ort">Ort</label>
<input class="input" id="ort" name="ort" type="text" autocorrect="off" autocomplete="address-level2" placeholder="Musterort">
<label class="label" for="telefon">Telefon</label>
<input class="input" id="telefon" name="telefon" type="tel" autocorrect="off" autocomplete="tel" placeholder="Musterort">
<label class="label" for="email">E-Mail</label>
<input class="input" id="email" name="email" type="email" autocapitalize="off" autocorrect="off" autocomplete="email" placeholder="[email protected]">
<label class="label" for="countrycode">Country code</label>
<input class="input" id="countrycode" name="countrycode" type="text" autocapitalize="off" autocorrect="off" autocomplete="country" placeholder="DE">
<label class="label" for="countryname">Country name</label>
<input class="input" id="countryname" name="countryname" type="text" autocomplete="country" placeholder="Germany">
<label class="label" for="birthday">Birthday</label>
<input class="input" id="birthday" name="birthday" type="date" autocorrect="off" autocomplete="bday" placeholder="YYYY-MM-DD">
<label class="label" for="fax">Fax</label>
<input class="input" id="fax" name="fax" type="tel" autocorrect="off" placeholder="+49 123456" disabled>
<label class="label" for="fax">File</label>
<input class="input" id="file" name="file" type="file">
<label class="label" for="nachricht">Nachricht</label>
<textarea class="input" id="nachricht" name="nachricht" rows="8" cols="40"></textarea>
<div class="control">
<input class="control__input" id="optionone" type="radio" name="option" value="optionone" checked>
<label class="control__label" for="optionone">Option One</label>
</div>
<div class="control">
<input class="control__input" id="optiontwo" type="radio" name="option" value="optiontwo">
<label class="control__label" for="optiontwo">Option Two</label>
</div>
<div class="control">
<input class="control__input" id="optionthree" type="radio" name="option" value="optionthree" disabled>
<label class="control__label" for="optionthree">Option Three</label>
</div>
<div class="control">
<input class="control__input" id="checkone" type="checkbox" name="checkone" value="checkone" checked>
<label class="control__label" for="checkone">Check One</label>
</div>
<div class="control">
<input class="control__input" id="checktwo" type="checkbox" name="checktwo" value="checktwo">
<label class="control__label" for="checktwo">Check Two</label>
</div>
<div class="control">
<input class="control__input" id="checkthree" type="checkbox" name="checkthree" value="checkthree" disabled>
<label class="control__label" for="checkthree">Check Three</label>
</div>
<div class="control">
<input class="control__input" id="checkfour" type="checkbox" name="checkfour" value="checkfour" checked disabled>
<label class="control__label" for="checkfour">Check Four</label>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer"></footer>
<script src="../js/vendor/jquery-1.8.0.min.js"></script>
<script src="../js/app.js"></script>
</body>
</html>