-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
220 lines (209 loc) · 13.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EPIC Home</title>
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body style="background: #1A1625">
<div class="desktop">
<div class="desktop-content">
<img src="imgs/desktop-banner.png" alt="Banner" class="desktop-banner">
<h1 class="desktop-title">Engineering Projects in Industry Club</h1>
<h1 class="desktop-school">Notre Dame</h1>
<div class="desktop-mission">
<h3 class="desktop-mission-title">Mission</h3>
<h4 class="desktop-mission-text">We aim to enrich the Notre Dame engineering curriculum by providing an avenue for students to gain industry experience and apply theory in class to real-world projects.</h4>
</div>
<div class="desktop-about">
<h3 class="desktop-about-title">About</h3>
<h4 class="desktop-about-text">EPIC is new club at notre dame that organizes project teams comprised of students interested in solving engineering problems with industry leaders. Through such interdisciplinary projects, students develop the technical and communication skills that are utilized everyday by those working in industry. Each project will follow a similar cycle as a real industry project, including the Engineering design cycle, prototyping, analysis, and code development. We hope students are able to build relationships with partnering companies that can evolve into internship or employment opportunities.</h4>
</div>
</div>
<div class="desktop-bar">
<a href="/index.html">
<img src="imgs/logo.png" alt="Logo" class="desktop-bar-logo">
</a>
<div class="desktop-menu">
<a class="desktop-home" href="/index.html">
<div class="desktop-home-content">
<h4 class="desktop-home-text">Home</h4>
<img src="imgs/home-icon.png" alt="Home Icon" class="desktop-home-icon">
</div>
<div class="desktop-home-active"></div>
</a>
<a class="desktop-leadership" href="/leadership.html">
<div class="desktop-leadership-content">
<h4 class="desktop-leadership-text">Leadership</h4>
<img src="imgs/leadership-icon.png" alt="Leadership Icon" class="desktop-leadership-icon">
</div>
<div class="desktop-leadership-active" style="visibility: hidden"></div>
</a>
<a class="desktop-projects" href="/projects.html">
<div class="desktop-projects-content">
<h4 class="desktop-projects-text">Projects</h4>
<img src="imgs/projects-icon.png" alt="projects Icon" class="desktop-projects-icon">
</div>
<div class="desktop-projects-active" style="visibility: hidden"></div>
</a>
<a class="desktop-contact" href="/contact.html">
<div class="desktop-contact-content">
<h4 class="desktop-contact-text">Contact Us</h4>
<img src="imgs/contact-icon.png" alt="contact Icon" class="desktop-contact-icon">
</div>
<div class="desktop-contact-active" style="visibility: hidden"></div>
</a>
</div>
<a href="https://forms.gle/xy8HjNqJDVMeyU9KA" target="blank">
<img src="imgs/apply-button.png" alt="Apply" class="desktop-bar-apply">
</a>
</div>
</div>
<div class="laptop">
<div class="laptop-content">
<img src="imgs/laptop-banner.png" alt="Banner" class="laptop-banner">
<h1 class="laptop-title">Engineering Projects in Industry Club</h1>
<h1 class="laptop-school">Notre Dame</h1>
<div class="laptop-mission">
<h3 class="laptop-mission-title">Mission</h3>
<h4 class="laptop-mission-text">We aim to enrich the Notre Dame engineering curriculum by providing an avenue for students to gain industry experience and apply theory in class to real-world projects.</h4>
</div>
<div class="laptop-about">
<h3 class="laptop-about-title">About</h3>
<h4 class="laptop-about-text">EPIC is new club at notre dame that organizes project teams comprised of students interested in solving engineering problems with industry leaders. Through such interdisciplinary projects, students develop the technical and communication skills that are utilized everyday by those working in industry. Each project will follow a similar cycle as a real industry project, including the Engineering design cycle, prototyping, analysis, and code development. We hope students are able to build relationships with partnering companies that can evolve into internship or employment opportunities.</h4>
</div>
</div>
<div class="desktop-bar">
<a href="/index.html">
<img src="imgs/logo.png" alt="Logo" class="desktop-bar-logo">
</a>
<div class="desktop-menu">
<a class="desktop-home" href="/index.html">
<div class="desktop-home-content">
<h4 class="desktop-home-text">Home</h4>
<img src="imgs/home-icon.png" alt="Home Icon" class="desktop-home-icon">
</div>
<div class="desktop-home-active"></div>
</a>
<a class="desktop-leadership" href="/leadership.html">
<div class="desktop-leadership-content">
<h4 class="desktop-leadership-text">Leadership</h4>
<img src="imgs/leadership-icon.png" alt="Leadership Icon" class="desktop-leadership-icon">
</div>
<div class="desktop-leadership-active" style="visibility: hidden"></div>
</a>
<a class="desktop-projects" href="/projects.html">
<div class="desktop-projects-content">
<h4 class="desktop-projects-text">Projects</h4>
<img src="imgs/projects-icon.png" alt="projects Icon" class="desktop-projects-icon">
</div>
<div class="desktop-projects-active" style="visibility: hidden"></div>
</a>
<a class="desktop-contact" href="/contact.html">
<div class="desktop-contact-content">
<h4 class="desktop-contact-text">Contact Us</h4>
<img src="imgs/contact-icon.png" alt="contact Icon" class="desktop-contact-icon">
</div>
<div class="desktop-contact-active" style="visibility: hidden"></div>
</a>
</div>
<a href="https://forms.gle/xy8HjNqJDVMeyU9KA" target="blank">
<img src="imgs/apply-button.png" alt="Apply" class="desktop-bar-apply">
</a>
</div>
</div>
<div class="tablet">
<div class="tablet-content">
<img src="imgs/tablet-banner.png" alt="Banner" class="tablet-banner">
<h1 class="tablet-title">Engineering Projects in Industry Club</h1>
<h1 class="tablet-school">Notre Dame</h1>
<div class="tablet-mission">
<h3 class="tablet-mission-title">Mission</h3>
<h4 class="tablet-mission-text">We aim to enrich the Notre Dame engineering curriculum by providing an avenue for students to gain industry experience and apply theory in class to real-world projects.</h4>
</div>
<div class="tablet-about">
<h3 class="tablet-about-title">About</h3>
<h4 class="tablet-about-text">EPIC is new club at notre dame that organizes project teams comprised of students interested in solving engineering problems with industry leaders. Through such interdisciplinary projects, students develop the technical and communication skills that are utilized everyday by those working in industry. Each project will follow a similar cycle as a real industry project, including the Engineering design cycle, prototyping, analysis, and code development. We hope students are able to build relationships with partnering companies that can evolve into internship or employment opportunities.</h4>
</div>
</div>
<div class="desktop-bar">
<a href="/index.html">
<img src="imgs/logo.png" alt="Logo" class="desktop-bar-logo">
</a>
<div class="tablet-menu">
<a class="tablet-home" href="/index.html">
<div class="desktop-home-content">
<h4 class="desktop-home-text">Home</h4>
<img src="imgs/home-icon.png" alt="Home Icon" class="desktop-home-icon">
</div>
<div class="desktop-home-active"></div>
</a>
<a class="tablet-leadership" href="/leadership.html">
<div class="desktop-leadership-content">
<h4 class="desktop-leadership-text">Leadership</h4>
<img src="imgs/leadership-icon.png" alt="Leadership Icon" class="desktop-leadership-icon">
</div>
<div class="desktop-leadership-active" style="visibility: hidden"></div>
</a>
<a class="tablet-projects" href="/projects.html">
<div class="desktop-projects-content">
<h4 class="desktop-projects-text">Projects</h4>
<img src="imgs/projects-icon.png" alt="projects Icon" class="desktop-projects-icon">
</div>
<div class="desktop-projects-active" style="visibility: hidden"></div>
</a>
<a class="tablet-contact" href="/contact.html">
<div class="desktop-contact-content">
<h4 class="desktop-contact-text">Contact Us</h4>
<img src="imgs/contact-icon.png" alt="contact Icon" class="desktop-contact-icon">
</div>
<div class="desktop-contact-active" style="visibility: hidden"></div>
</a>
</div>
<a href="https://forms.gle/xy8HjNqJDVMeyU9KA" target="blank">
<img src="imgs/apply-button.png" alt="Apply" class="desktop-bar-apply">
</a>
</div>
</div>
<div class="mobile">
<div class="mobile-content">
<img src="imgs/mobile-banner.png" alt="Banner" class="mobile-banner">
<h1 class="mobile-title">Engineering Projects in Industry Club</h1>
<h1 class="mobile-school">Notre Dame</h1>
</div>
<div class="mobile-mission">
<h3 class="mobile-mission-title">Mission</h3>
<h4 class="mobile-mission-text">We aim to enrich the Notre Dame engineering curriculum by providing an avenue for students to gain industry experience and apply theory in class to real-world projects.</h4>
</div>
<div class="mobile-about">
<h3 class="mobile-about-title">About</h3>
<h4 class="mobile-about-text">EPIC is new club at notre dame that organizes project teams comprised of students interested in solving engineering problems with industry leaders. Through such interdisciplinary projects, students develop the technical and communication skills that are utilized everyday by those working in industry. Each project will follow a similar cycle as a real industry project, including the Engineering design cycle, prototyping, analysis, and code development. We hope students are able to build relationships with partnering companies that can evolve into internship or employment opportunities.</h4>
</div>
<div class="mobile-bar">
<div class="mobile-menu">
<a class="mobile-home" href="/index.html">
<img src="imgs/home-icon.png" alt="Home Icon" class="mobile-home-icon">
<div class="mobile-home-active"></div>
</a>
<a class="mobile-leadership" href="/leadership.html">
<img src="imgs/leadership-icon.png" alt="Leadership Icon" class="mobile-leadership-icon">
<div class="mobile-leadership-active" style="visibility: hidden"></div>
</a>
<a class="mobile-projects" href="/projects.html">
<img src="imgs/projects-icon.png" alt="Projects Icon" class="mobile-projects-icon">
<div class="mobile-projects-active" style="visibility: hidden"></div>
</a>
<a class="mobile-contact" href="/contact.html">
<img src="imgs/contact-icon.png" alt="contact Icon" class="mobile-contact-icon">
<div class="mobile-contact-active" style="visibility: hidden"s></div>
</a>
</div>
<a href="https://forms.gle/xy8HjNqJDVMeyU9KA" target="blank">
<img src="imgs/apply-button.png" alt="Apply" class="mobile-apply">
</a>
</div>
</div>
</body>
</html>