shadowkinga commited on
Commit
0ecd61a
·
verified ·
1 Parent(s): d2dc4e8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +49 -18
index.html CHANGED
@@ -1,19 +1,50 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="zh">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>团课展示汇报</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <div class="page" id="page1" class="active">
12
+ <h1>团课展示汇报</h1>
13
+ <p>欢迎大家来到本次团课展示汇报。在这里,我们将一起回顾我们团体的成长历程、所取得的成就以及未来的计划。</p>
14
+ <button onclick="nextPage(2)">下一页</button>
15
+ </div>
16
+
17
+ <div class="page" id="page2">
18
+ <h1>团队背景</h1>
19
+ <p>我们的团队成立于2022年,旨在通过团体合作、互帮互助,实现共同的学习与成长。</p>
20
+ <p>团队成员来自不同的背景和领域,但我们都有一个共同的目标:提升个人能力,增强团队协作。</p>
21
+ <button onclick="nextPage(3)">下一页</button>
22
+ <button onclick="prevPage(1)">上一页</button>
23
+ </div>
24
+
25
+ <div class="page" id="page3">
26
+ <h1>所取得的成就</h1>
27
+ <ul>
28
+ <li>成功举办了多次团体活动,包括团队建设、知识分享和志愿服务等。</li>
29
+ <li>提升了成员的沟通能力和团队协作能力,收到了积极的反馈。</li>
30
+ <li>在各类比赛中获得了优异的成绩,增强了团队的凝聚力和信任感。</li>
31
+ </ul>
32
+ <button onclick="nextPage(4)">下一页</button>
33
+ <button onclick="prevPage(2)">上一页</button>
34
+ </div>
35
+
36
+ <div class="page" id="page4">
37
+ <h1>未来计划</h1>
38
+ <p>为了继续提升团队的整体素质,我们计划:</p>
39
+ <ol>
40
+ <li>定期举办团队培训和工作坊,邀请行业专家进行分享。</li>
41
+ <li>加强团队之间的交流与合作,分享成功经验和教训。</li>
42
+ <li>参与更多的社会公益活动,提升团队的社会责任感。</li>
43
+ </ol>
44
+ <button onclick="prevPage(3)">上一页</button>
45
+ </div>
46
+ </div>
47
+
48
+ <script src="script.js"></script>
49
+ </body>
50
  </html>