-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (108 loc) · 2.42 KB
/
Copy pathindex.html
File metadata and controls
116 lines (108 loc) · 2.42 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="title-bar">
<div>i am a title bar</div>
<div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
</div>
<div id="title-bar-and-footer">
<div>i am a title bar</div>
<div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div>i am a foooter bar</div>
</div>
<div id="title-bar-and-footer-scroll">
<div>i am a title bar</div>
<div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
<div>i am a foooter bar</div>
</div>
<div id="evenly-spaced-rows">
<div>
<div><textarea>i am evil</textarea></div>
<div>item</div>
<div>tall item</div>
<div>item</div>
<div>item</div>
<div>item</div>
</div>
</div>
<div id="fill-parent">
<div>
i should fill my container
</div>
</div>
<div id="square-at-top">
<div id="square">i should be square</div>
<div id="not-square">i should fill the rest</div>
</div>
<div id="center-text">
<p>i should be centered</p>
</div>
<div id="masonry">
<div>(1) brick</div>
<div>(2) brick</div>
<div>(3) brick</div>
<div>(4) brick</div>
<div>(5) brick</div>
<div>(6) brick</div>
<div>(7) brick</div>
<div>(8) brick</div>
<div>(9) brick</div>
</div>
<div id="overlap-menu">
<div>overlaping areas</div>
<label for="h">home</label>
<label for="i">info</label>
<label for="c">contact</label>
<input type="radio" name="tab" id="h" checked>
<article>home stuff</article>
<input type="radio" name="tab" id="i">
<article>info stuff</article>
<input type="radio" name="tab" id="c">
<article>contact stuff</article>
</div>
<div id="overlap">
<div>1 we overlap 1</div>
<div>2 we overlap 2</div>
<div>3 we overlap 3</div>
</div>
<div id="badge">
<div>i am the main content</div>
<div>badge</div>
</div>
<div id="floating-reset">
<form>
<div>
input with floating reset
</div>
<input type="text"/>
<input type="reset" value="X"/>
</form>
</div>
</body>
</html>