-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
72 lines (63 loc) · 2.96 KB
/
about.html
File metadata and controls
72 lines (63 loc) · 2.96 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
<!DOCTYPE html>
<html>
<title>Chinese Engineering Student Association</title>
<link rel=”icon” href=”icon.png” mce_href=”icon.png” type=”image/x-icon”>
<link rel=”shortcut icon” href=”icon.png” mce_href=”icon.png” type=”image/x-icon”>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Courier", sans-serif}
body, html {
height: 100%;
line-height: 1.8;
}
/* Full height image header */
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("background.png");
min-height: 100%;
}
.w3-bar .w3-button {
padding: 16px;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card-2" id="myNavbar">
<a href="main.html" class="w3-bar-item w3-button w3-wide">CESA</a>
<!-- Right-sided navbar links -->
<div class="w3-right w3-hide-small">
<a href="about.html" class="w3-bar-item w3-button">About</a>
<a href="realmembers.html" class="w3-bar-item w3-button">Departments</a>
<a href="activities.html" class="w3-bar-item w3-button">Events</a>
<a href="contactus.html" class="w3-bar-item w3-button">Contact Us</a>
</div>
<!-- Hide right-floated links on small screens and replace them with a menu icon -->
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium" onclick="w3_open()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<!-- Sidebar on small screens when clicking the menu icon -->
<nav class="w3-sidebar w3-bar-block w3-black w3-card-2 w3-animate-left w3-hide-medium w3-hide-large" style="display:none" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()" class="w3-bar-item w3-button w3-large w3-padding-16">Close ×</a>
<a href="#Intro" onclick="w3_close()" class="w3-bar-item w3-button">Intro</a>
<a href="#about" onclick="w3_close()" class="w3-bar-item w3-button">ABOUT</a>
<a href="#Members" onclick="w3_close()" class="w3-bar-item w3-button">Departments</a>
<a href="#Activities" onclick="w3_close()" class="w3-bar-item w3-button">Events</a>
<a href="#Resources" onclick="w3_close()" class="w3-bar-item w3-button">Resources</a>
</nav>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64">
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<img src="Wechat.jpg" alt="Tech" style="width:10%">
<div>Chinese Engineering Student Association</div>
<div>in University of Illinois at Urbana-Champaign</div>
</div>
</footer>