-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmore_examples.html
59 lines (48 loc) · 1.53 KB
/
more_examples.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="input.css">
</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: 50% ;
max-width: 50% ;
"
>
<input type="text" required/>
<label>This is an big input</label>
</div>
<div class="input purple"
style="
width: 98% ;
max-width: 98% ;
"
>
<input type="text" required/>
<label>whole width</label>
</div>
<div class="input orange">
<input type="text" required/>
<label>This is an input</label>
</div>
<div class="input red">
<input type="text" required/>
<label>This is an input</label>
</div>
</body>
</html>