-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
285 lines (254 loc) · 10.7 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<!--Bootstrap CSS-->
<!-- CSS only --><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!--custom css-->
<link rel="stylesheet" href="./css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Sans&display=swap" rel="stylesheet">
<title>ISUxIEEE</title>
</head>
<body id="home">
<!--navbar-->
<nav>
<div class = "logo">
<h4>IEEE</h4>
</div>
<ul class = "nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#section2">About</a></li>
<li><a href="#section-4">Leadership</a></li>
<li><a href="#section5">Partners</a></li>
</ul>
<div class = "burger">
<div class="line"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!--end of navbar-->
<!--section 1-->
<div id="carousel-container" class="container-fluid px-0">
<div class = "row">
<div class="col-md-12">
<!--<img class = "img-fluid" src="./img/testBG.jpg" alt="placeholder 960" />-->
<div id="carouselIndicator" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active" aria-label="Slide 1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1" aria-label="Slide 2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2" aria-label="Slide 3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="carousel-image" class="d-block w-100" src="./img/testBG.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img id="carousel-image" class="carousel-image" src="./img/testBG2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img id="carousel-image" class="carousel-image" src="./img/testBG3.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- end of section 1-->
<!--section 2-->
<section id="section2" class="leadership-section h-100" >
<div class = "container h-100" >
<div>
<h1 class="text-center mt-4 mb-4">About Us</h1>
</div>
<div class = "text-center" >
<img class = "section-3-graphic" src="img/logo-ieee.svg">
</div>
<div class="row row-cols-1 row-cols-md-3 g-4 px-4 mb-4">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title text-center">What is IEEE?</h5>
<p class="card-text">The Institute of Electrical and Electronics Engineers (IEEE) is the largest technical professional society. IEEE has more than 400,000 members all around the world.</p>
</div>
</div>
</div>
<div class="col">
<div class="card" style="">
<div class="card-body">
<h5 class="card-title text-center">Goals</h5>
<p class="card-text">To promote the extracurricular experience and further the academic opportunity of the ECE student body at Iowa State University. This is done with the aim of fostering technological innovation and excellence for the benefit of humanity.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title text-center">History</h5>
<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--end of section 2-->
<!--section 4-->
<section class="leadership-section" id="section-4">
<div class="container h-100">
<div class="row">
<div class="h1 text-center">Executive Members</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6">
<img src="./img/images.png" alt="Name Here" class="lead">
<h6 class="text-center">Name</h6>
<h6 class="text-center">President</h6>
</div>
<div class="col-sm-12 col-md-6">
<img src="./img/images.png" alt="Name Here" class="lead">
<h6 class="text-center">Name</h6>
<h6 class="text-center">Vice President</h6>
</div>
<div class="col-sm-12 col-md-4">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">Treasurer</h6>
</div>
<div class="col-sm-12 col-md-4">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">Secretary</h6>
</div>
<div class="col-sm-12 col-md-4">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">Media Secretary</h6>
</div>
</div>
</div>
<!--
<div class="container-fluid">
<div class="row">
<div class="h1 text-center">Curriculum Chairs</div>
</div>
<div class="row mt-4 mb-4">
<div class="col-sm-12 col-md-3">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">CprE Chair</h6>
</div>
<div class="col-sm-12 col-md-3">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">CybE Chair</h6>
</div>
<div class="col-sm-12 col-md-3">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">EE Chair</h6>
</div>
<div class="col-sm-12 col-md-3">
<img src="./img/images.png" alt="Name Here" class="lead2">
<h6 class="text-center">Name</h6>
<h6 class="text-center">SE Chair</h6>
</div>
</div>
</div>
-->
</section>
<!--end of section 4-->
<!--section 5-->
<section class="leadership-section" id="section5">
<div class="container-fluid">
<div class="row">
<div class="h1 text-center">Interclub Cooperation</div>
</div>
<div class="row mt-4 mb-4">
<div class="col-sm-12 col-md-6">
<h3 class="text-center">IEEE-Eta Kappa Nu: ISU Chapter</h3>
<img src ="img/HKN.png" alt="" class="banner">
</div>
<div class="col-sm-12 col-md-6">
<h3 class="text-center">Critical Tinkers</h3>
<img src ="img/ct.png" alt="" class="critical-tinkers-img" >
</div>
</div>
</div>
</section>
<!--end of section 5-->
<!--section 6/footer-->
<!-- Footer -->
<footer class="text-center text-lg-start">
<div class="container p-4">
<div class="row">
<div class="col-lg-3 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase">IEEE</h5>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Iste atque ea quis
molestias. Fugiat pariatur maxime quis culpa corporis vitae repudiandae aliquam
voluptatem veniam, est atque cumque eum delectus sint!
</p>
</div>
<div class="col-lg-3 col-md-3 mb-4 mb-md-0">
<h5 class="text-uppercase">Lorem Ipsum</h5>
<ul class="list-unstyled mb-0">
<li>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cupiditate pariatur id consequuntur aut excepturi ut doloremque consequatur, repellendus laudantium distinctio.
</p>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-3 mb-4 mb-md-0">
<h5 class="text-uppercase mb-0">Lorem Ipsum</h5>
<ul class="list-unstyled">
<li><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci itaque laudantium dicta eos distinctio? Laudantium odio saepe voluptatem perspiciatis. Rem!</p>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-3 mb-4 mb-md-0">
<h5 class="text-uppercase">Lorem Ipsum</h5>
<ul class="list-unstyled mb-0">
<li>
<p> ieeepres@iastate.edu </p>
<p> � 2021 Copyright:<p></p>
<a href="https://www.stuorg.iastate.edu/265" target="_blank">IEEE @ ISU</a> |
<a href="http://webdev.stuorg.iastate.edu" target="_blank">ISU Web Dev Club</a> </p>
</li>
</ul>
</div>
</div>
</div>
<div class="text-center p-3" style="background-color: #069;">
� 2021 Copyright:
<a href="https://www.stuorg.iastate.edu/265" target="_blank">IEEE @ ISU</a> |
<a href="http://webdev.stuorg.iastate.edu" target="_blank">ISU Web Dev Club</a>
</div>
</footer>
<!--end of section 6/footer-->
</body>
<!--Boostrap JS-->
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="./js/index.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>-->
<script src="./node_modules/@popperjs/core/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<!--custom JS-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</html>