-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
104 lines (92 loc) · 4.21 KB
/
contactus.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
<!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="main.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>
<!-- Contact section -->
<div class="w3-container w3-light-grey w3-padding-32 w3-padding-large" id="contact">
<div class="w3-content" style="max-width:600px">
<br />
<br />
<br />
<h4 class="w3-center"><b>Contact Us</b></h4>
<p>Chinese Engineering Student Association bridges
the gap between students and the college community through service events,
professional networking, and social engagements.</p>
<p>If you are interested in learning more, participating in some of our events,
or partnering with us on your own events, please contact us using the information below.</p>
<form action="/action_page.php" target="_blank">
<div class="w3-section">
<label>Name</label>
<input class="w3-input w3-border" type="text" name="Name" required>
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input w3-border" type="text" name="Email" required>
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input w3-border" type="text" name="Message" required>
</div>
<button type="submit" class="w3-button w3-block w3-black w3-margin-bottom">Send Message</button>
</form>
</div>
</div>
<!-- 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>