-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
264 lines (257 loc) · 11.1 KB
/
test.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<html>
<head>
<title>Test PDF</title>
<link rel="stylesheet" type="text/css" href="test.css" />
</head>
<body>
<header class="boxed split-view">
<h1>Report Name</h1>
<span>Date</span>
</header>
<section id="gridContainer">
<div class="row">
<div class="cell">
<h2 class="boxed">Header 1</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="cell">
<h2 class="boxed">Header 2</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="cell">
<h2 class="boxed">Header 3</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="cell">
<h2 class="boxed">Header 4</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="cell">
<h2 class="boxed">Header 5</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="cell">
<h2 class="boxed">Header 6</h2>
<table class="chart">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td></td>
<td class="filled">X</td>
<td></td>
</tr>
<tr>
<th>Thing 2</th>
<td class="filled">X</td>
<td></td>
<td class="filled">X</td>
</tr>
<tr>
<th>Thing 3</th>
<td class="filled">X</td>
<td class="filled">X</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="paragraphs">
<h2 class="boxed thick">This is the Paragraph 1 header</h2>
<main>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam a metus tincidunt, elementum purus id, accumsan ligula. In pharetra
lobortis magna et consequat. Mauris molestie ex tempus posuere aliquam. Quisque vitae augue dolor. Integer vel ultricies nisl. Vivamus
sed orci eget nunc consequat aliquet eget id arcu. Suspendisse at ex eu neque posuere pellentesque eu in ex. Duis pellentesque at
neque ut pulvinar. Nam vitae elit hendrerit urna aliquet fringilla.
</p>
<p>
Nullam vitae dolor ac tortor congue dictum vel laoreet elit. Donec fermentum in ipsum vitae tincidunt. Duis pulvinar nisi eu augue
imperdiet pretium. Mauris id odio ut odio vehicula feugiat. Donec est eros, lobortis blandit imperdiet in, convallis a sem. Curabitur
vitae ipsum sit amet mauris cursus sollicitudin vitae sit amet nibh. Ut tellus elit, rutrum vitae bibendum vel, sodales ut velit. Nam
ante mi, varius at consectetur quis, mollis ac magna. Praesent gravida, tellus ut maximus commodo, magna dolor auctor arcu, non mollis
leo ante non lectus. Etiam non blandit ipsum, et viverra arcu. Fusce imperdiet laoreet posuere. Donec sagittis purus in nunc accumsan,
eu tempor ante finibus. Nulla velit nibh, varius in condimentum at, varius vel lorem. Vestibulum ante ipsum primis in faucibus orci
luctus et ultrices posuere cubilia Curae; Phasellus fermentum dolor nec enim ultrices, eget dapibus felis tempus. Sed auctor sodales
urna, sed placerat nisl ultrices vitae.</p>
</main>
</section>
<section class="paragraphs">
<h2 class="boxed thick">This is the Paragraph 2 header</h2>
<main>
<p>
Vivamus tempor convallis dolor, a consequat nulla pellentesque sit amet. Morbi placerat eget dui non sollicitudin. Sed eget molestie
arcu. Sed hendrerit nisi sit amet mattis sodales. Integer erat mauris, auctor at congue eu, semper ullamcorper nulla. Fusce eget arcu
at ante aliquet maximus. Pellentesque finibus libero at metus vulputate luctus. Morbi lorem ante, interdum ut malesuada ut, malesuada
ut nisl. Morbi id nunc lacinia, laoreet dolor id, sodales nulla. Aliquam erat volutpat. Pellentesque elit nibh, imperdiet at quam vel,
fringilla feugiat ex. Integer efficitur faucibus mi at pellentesque.
</p>
<p>
Vivamus eget condimentum mi. Nulla non sollicitudin est. Aenean id feugiat neque. Aenean non nulla urna. Praesent eget lacus justo.
Fusce porttitor dolor cursus, condimentum neque quis, porta purus. In ac odio blandit, vulputate massa id, semper risus. Cras
ultricies, enim quis posuere mollis, arcu enim sollicitudin magna, id egestas diam ante nec dolor. Fusce condimentum elit vitae nulla
pulvinar, non facilisis massa feugiat. Proin iaculis porttitor suscipit. Vestibulum quis est sollicitudin, commodo ex et, imperdiet
libero. Integer pretium sed lectus at iaculis. Vestibulum dolor dolor, suscipit vitae tellus vitae, convallis vehicula eros. Vivamus
viverra ultrices sapien ac iaculis.
</p>
</main>
</section>
<footer>Footer</footer>
</body>
</html>