-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (100 loc) · 3.17 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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Home | CSSA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/layout.css">
</head>
<body id="home">
<!-- Header -->
<div id="header_container">
<div class="header">
<a class="header_logo" href="index.html"><img src="images/logo.gif" height="90" width="90"></a> <a class="header_name" href="index.html">Stevens CSSA</a>
<!-- Header Navigation Bar -->
<ul id="site-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="information.html">Information</a>
</li>
<li>
<a href="committee.html">committee</a>
</li>
<li>
<a href="newsevent.html">news & events</a>
</li>
<li>
<a href="contacts.html">contacts</a>
</li>
<li>
<a id="si" href="signin.html">Sign In</a>
</li>
</ul>
</div>
</div>
<!-- Content -->
<div id="content_container">
<div class="content_1">
<div id="title"><h3>Welcome to join us<h3></div>
<div id="essay">CSSA的全称是Chinese Students & Scholar Association,中文名称是中国学生学者联谊会,是代表中国留学生的官方组织。其成员默认包括所有在Stevens的中国学生(本科和研究生)约500余人。CSSA 作为 Stevens中国学生学者的联谊组织,尽力为即将踏出国门留学深造的新同学们提供力所能及的帮助,让新同学们的新生活能有好的开始。</div>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 6</div>
<img src="images/view1.jpg" style="width:100%">
<div class="text">View1</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 6</div>
<img src="images/view2.jpg" style="width:100%">
<div class="text">View2</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 6</div>
<img src="images/view3.jpg" style="width:100%">
<div class="text">View3</div>
</div>
<div class="mySlides fade">
<div class="numbertext">4 / 6</div>
<img src="images/view4.jpg" style="width:100%">
<div class="text">View4</div>
</div>
<div class="mySlides fade">
<div class="numbertext">5 / 6</div>
<img src="images/view5.jpg" style="width:100%">
<div class="text">View5</div>
</div>
<div class="mySlides fade">
<div class="numbertext">6 / 6</div>
<img src="images/view6.jpg" style="width:100%">
<div class="text">View6</div>
</div>
</div>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</div>
<!-- Footer -->
<div id="footer_container">
<div class="foot1">
欢迎大家来到 Stevens Institute of Technology! 享受美好的学习生活吧!
</div>
<div class="foot2">
Welcome to Stevens! Enjoy your life here!
</div>
<div class="foot3">
© 2018 STEVENS | CSSA. ALL RIGHT RESEVERD.
<a href="privacypolicy.html">Privacy Policy</a>
</div>
</div>
</body>
<script src="js/slider.js"></script>
</html>