-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore_examples.html
More file actions
56 lines (45 loc) · 1.3 KB
/
more_examples.html
File metadata and controls
56 lines (45 loc) · 1.3 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="input.css">
<style>
body {
font-family: "Arial";
margin: auto;
padding: 1em;
max-width: 900px;
}
</style>
</head>
<body>
<h1>here is a header</h1>
<p>and some text</p>
<div class="input green">
<input type="text" required />
<label>This is an input</label>
</div>
<p>This is some more text</p>
<div class="input blue">
<input type="text" required />
<label>This is an input with much text in the label</label>
</div>
<p>Some Text again</p>
<div class="input yellow" style="height: 150px; width: 100%; max-width: 500px;">
<input type="text" placeholder />
<label>This is an big input</label>
</div>
<div class="input purple" style="width: 98%; max-width: 98%;">
<input type="text" placeholder />
<label>whole width</label>
</div>
<div class="input orange">
<input type="text" placeholder />
<label>This is an input</label>
</div>
<div class="input red">
<input type="text" placeholder />
<label>This is an input</label>
</div>
</body>
</html>