-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (76 loc) · 3.56 KB
/
index.html
File metadata and controls
81 lines (76 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>江南大学人工智能俱乐部</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
header {
background: linear-gradient(135deg, #667eea, #764ba2);
}
</style>
</head>
<body class="bg-gray-100 text-gray-800">
<header class="text-white py-6">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-3xl font-bold">江南大学人工智能俱乐部</h1>
<nav>
<ul class="flex space-x-4">
<li><a href="#about" class="hover:underline">关于我们</a></li>
<li><a href="#events" class="hover:underline">活动展示</a></li>
<li><a href="#contact" class="hover:underline">联系我们</a></li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="bg-white py-16 text-center">
<h2 class="text-4xl font-extrabold mb-4">探索人工智能的无限可能</h2>
<p class="text-lg text-gray-600">欢迎加入江南大学人工智能俱乐部,与我们一起学习、分享、创造未来。</p>
<a href="#about" class="mt-6 inline-block bg-blue-600 text-white py-2 px-6 rounded-full shadow hover:bg-blue-700">了解更多</a>
</section>
<!-- About Section -->
<section id="about" class="bg-gray-50 py-16">
<div class="container mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">关于我们</h2>
<p class="text-gray-600">江南大学人工智能俱乐部致力于探索人工智能技术的前沿,培养具有创新精神和实践能力的AI人才。我们通过项目实践、学术分享、竞赛参与等形式推动学生全面成长。</p>
</div>
</section>
<!-- Events Section -->
<section id="events" class="bg-white py-16">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-8">活动展示</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-100 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">AI 项目实践</h3>
<p>通过项目实践锻炼动手能力,体验从模型设计到实现的完整流程。</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">学术分享会</h3>
<p>邀请业内专家和优秀成员分享最新的AI技术与研究成果。</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">AI 竞赛</h3>
<p>组织参与各类人工智能相关竞赛,锻炼团队合作与创新能力。</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="bg-gray-50 py-16">
<div class="container mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">联系我们</h2>
<p class="text-gray-600 mb-4">如果你对人工智能感兴趣,欢迎联系我们加入俱乐部。</p>
<a href="mailto:ai-club@jiangnan.edu.cn" class="inline-block bg-green-600 text-white py-2 px-6 rounded-full shadow hover:bg-green-700">发送邮件</a>
</div>
</section>
</main>
<footer class="bg-gray-800 text-white py-6">
<div class="container mx-auto text-center">
<p>© 2025 江南大学人工智能俱乐部. 保留所有权利。</p>
</div>
</footer>
</body>
</html>