-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
153 lines (132 loc) · 3.45 KB
/
about.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
/* Style the header */
.header {
padding: 30px;
text-align: center;
background: #760f0f;
color: #dddddd;
}
/* Increase the font size of the h1 element */
.header h1 {
font-size: 40px;
}
/* Style the top navigation bar */
.navbar {
overflow: hidden;
background-color: #262626;
}
/* Style the navigation bar links */
.navbar a {
float: left;
display: block;
color: #dddddd;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
float: right;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* AIChE on Right */
.aiche_right {
flex: 50%;
background-color: #ffffff;
padding: 20px;
}
/*TODO adjust colors to match color scheme*/
/* Cheme car on Left */
.cheme_car_left {
flex: 70%;
background-color: #ffffff;
padding: 20px;
}
/* Fake image, just for this example */
.fakeimg {
background-color: #d4d4d4;
width: 100%;
padding: 20px;
}
/* Footer */
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row {
flex-direction: column;
}
}
/* TODO FIX the text on this page, update */
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.navbar a {
float: none;
width:100%;
}
}
</style>
</head>
<body>
<div class="header">
<h1>Rensselaer AIChE</h1>
<p>The American Institute of Chemical Engineers at RPI</p>
</div>
<div class="navbar">
<a href="about.html"><b>About</b></a>
<a href="officers.html">Officers</a>
<a href="resources.html">Resources</a>
<a href="events.html">Events</a>
<a href="index.html" class="right">Home</a>
</div>
<div class="row">
<div class="aiche_right">
<h2>AIChE</h2>
<p>The <a href="aiche.com"> American Institute of Chemical Engineers (AIChE) </a> is a national organization
with the mission to "promote excellence in the development and practice of chemical engineering." Its
membership consists of five grades - Student, Affiliate, Associate, Member and Fellow, ranging from
undergraduate students to professors, professional engineers to executive officers in major corporations.
Check out the site to learn more about the RPI Chapter and how you can join.
</p>
</div>
<div class="cheme_car_left">
<h2>ChemE Car</h2>
<p>Chem-E-Car is a competition hosted by the AIChE. RPI Chem-E-Car competes annually at the Northeast Regional
Conference. We have made a few appearances at the Annual Student Conference to compete against universities
from all over the world. Check out more info under CHEM-E-CAR tab! </p>
</div>
</div>
<div class="footer">
<h2>Footer</h2>
Copyright ©RPI Chapter of the AIChE. All Rights Reserved.
Contact Webmaster
Last Modified: 3/25/2021
</div>
</body>
</html>