-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
386 lines (363 loc) · 22.5 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
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="output.css" rel="stylesheet">
</head>
<body>
<div class="navbar bg-base-100">
<div class="navbar-start">
<div class="dropdown">
<label tabindex="0" class="btn btn-ghost lg:hidden">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16" /></svg>
</label>
<ul tabindex="0"
class="menu menu-compact dropdown-content mt-3 p-2 shadow bg-base-100 rounded-box w-52">
<li><a>Item 1</a></li>
<li tabindex="0">
<a class="justify-between">
Parent
<svg class="fill-current" xmlns="http://www.w3.org/2000/svg" width="24" height="24"
viewBox="0 0 24 24">
<path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" /></svg>
</a>
<ul class="p-2">
<li><a>Submenu 1</a></li>
<li><a>Submenu 2</a></li>
</ul>
</li>
<li><a>Item 3</a></li>
</ul>
</div>
<a class="btn btn-ghost normal-case text-xl">daisyUI</a>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal p-0">
<li><a>Item 1</a></li>
<li tabindex="0">
<a>
Parent
<svg class="fill-current" xmlns="http://www.w3.org/2000/svg" width="20" height="20"
viewBox="0 0 24 24">
<path d="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z" /></svg>
</a>
<ul class="p-2">
<li><a>Submenu 1</a></li>
<li><a>Submenu 2</a></li>
</ul>
</li>
<li><a>Item 3</a></li>
</ul>
</div>
<div class="navbar-end">
<a class="btn">Get started</a>
</div>
</div>
<div class="container mx-auto py-4 grid md:justify-between md:grid-cols-4 sm:grid-cols-1 space-x-2 ">
<div class="card shadow-lg">
<figure><img src="https://placeimg.com/400/225/arch" alt="Shoes" /></figure>
<div class="card-body">
<h2 class="card-title">Shoes!</h2>
<p>If a dog chews shoes whose shoes does he choose?</p>
<div class="card-actions justify-end">
<button class="btn btn-primary">Buy Now</button>
</div>
</div>
</div>
<div class="card shadow-lg">
<figure><img src="https://placeimg.com/400/225/arch" alt="Shoes" /></figure>
<div class="card-body">
<h2 class="card-title">Shoes!</h2>
<p>If a dog chews shoes whose shoes does he choose?</p>
<div class="card-actions justify-end">
<button class="btn btn-primary">Buy Now</button>
</div>
</div>
</div>
<div class="card shadow-lg">
<figure><img src="https://placeimg.com/400/225/arch" alt="Shoes" /></figure>
<div class="card-body">
<h2 class="card-title">Shoes!</h2>
<p>If a dog chews shoes whose shoes does he choose?</p>
<div class="card-actions justify-end">
<button class="btn btn-primary">Buy Now</button>
</div>
</div>
</div>
</div>
<footer class="footer footer-center p-10 bg-primary text-primary-content">
<div>
<svg width="50" height="50" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd"
clip-rule="evenodd" class="inline-block fill-current">
<path
d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z">
</path>
</svg>
<p class="font-bold">
ACME Industries Ltd. <br>Providing reliable tech since 1992
</p>
<p>Copyright © 2022 - All right reserved</p>
</div>
<div>
<div class="grid grid-flow-col gap-4">
<a><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
class="fill-current">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z">
</path>
</svg></a>
<a><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
class="fill-current">
<path
d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z">
</path>
</svg></a>
<a><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
class="fill-current">
<path
d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z">
</path>
</svg></a>
</div>
</div>
</footer>
<section class="dark:bg-gray-800 dark:text-gray-100">
<div class="container px-4 py-16 mx-auto space-y-8 lg:max-w-3xl">
<h2 class="text-2xl font-bold md:text-4xl">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">时间线</font>
</font>
</h2>
<div class="space-y-8">
<div>
<h3 class="mb-3 text-lg font-bold md:text-xl">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">2021</font>
</font>
</h3>
<ul class="space-y-4">
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
</ul>
</div>
<div>
<h3 class="mb-3 text-lg font-bold md:text-xl">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">2020</font>
</font>
</h3>
<ul class="space-y-4">
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
</ul>
</div>
<div>
<h3 class="mb-3 text-lg font-bold md:text-xl">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">2019</font>
</font>
</h3>
<ul class="space-y-4">
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
<li class="space-y-1">
<div class="flex items-center space-x-2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="w-4 h-4 fill-current dark:text-violet-400">
<path
d="M426.072,86.928A238.75,238.75,0,0,0,88.428,424.572,238.75,238.75,0,0,0,426.072,86.928ZM257.25,462.5c-114,0-206.75-92.748-206.75-206.75S143.248,49,257.25,49,464,141.748,464,255.75,371.252,462.5,257.25,462.5Z">
</path>
<polygon
points="221.27 305.808 147.857 232.396 125.23 255.023 221.27 351.063 388.77 183.564 366.142 160.937 221.27 305.808">
</polygon>
</svg>
<h4 class="font-medium">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Quis velit quae similique maxime optio
temporibus</font>
</font>
</h4>
</div>
<p class="ml-7 dark:text-gray-400">
<font style="vertical-align: inherit;">
<font style="vertical-align: inherit;">Illum hic placeat unde porro,cupidate
nesciunt?
</font>
<font style="vertical-align: inherit;">Numquam debitis eligendi aspernatur 妈妈。
</font>
</font>
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
</body>
</html>