-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcourses.html
More file actions
46 lines (43 loc) · 1.58 KB
/
courses.html
File metadata and controls
46 lines (43 loc) · 1.58 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>伊利玺斯</title>
<link rel="stylesheet" href="styles.css">
<!-- ... (省略了meta标签和link标签,与之前的示例相同) ... -->
<title>伊利玺斯 - 课程介绍</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<img src="images/logo-image.jpg" alt="伊利玺斯">伊利玺斯
</div>
<ul class="nav-links">
<li><a href="index.html">首页</a></li>
<li><a href="courses.html">课程介绍</a></li>
<li><a href="teachers.html">教师团队</a></li>
<li><a href="about.html">关于我们</a></li>
<li><a href="contact.html">联系我们</a></li>
</ul>
</nav>
</header>
<!-- ... (导航栏与之前的示例相同) ... -->
<section id="courses-page" class="courses-page">
<h1>我们的课程</h1>
<!-- 课程列表,可以复制以下div以添加更多课程 -->
<div class="course">
<h2>课程名称</h2>
<img src="images/course-image.jpg" alt="课程图片">
<p>课程描述...</p>
<a href="#" class="enroll-button">立即报名</a>
</div>
</section>
<footer>
<p>© 2025 伊利玺斯. 版权所有.</p>
</footer>
<!-- ... (省略了footer,与之前的示例相同) ... -->
<script src="scripts.js"></script>
</body>
</html>