-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsevent.html
81 lines (78 loc) · 2.11 KB
/
newsevent.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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>News & events | 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">
<script src="js/signin.js"></script>
</head>
<body id="newsevent">
<!-- 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>Something<h3></div>
<div id="essay">News and Events in Stevens</div>
</div>
<a href="content.html">
<div class="newscard">
<img src="images/img_nature_wide.jpg" alt="Avatar" style="width:50%">
<div class="newscontainer">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
</a>
<a href="content.html">
<div class="newscard">
<img src="images/img_fjords_wide.jpg" alt="Avatar" style="width:50%">
<div class="newscontainer">
<h4><b>John Doe</b></h4>
<p>Architect & Engineer</p>
</div>
</div>
</a>
</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>
</html>