-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
90 lines (87 loc) · 4.21 KB
/
events.html
File metadata and controls
90 lines (87 loc) · 4.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Events</title>
<link rel="stylesheet" type="text/css" href="styles/site.css" media="all">
</head>
<body>
<header>
<div class="title">
<picture>
<!--Image source: https://en.wikipedia.org/wiki/File:Chi_Psi_Seal.png-->
<img src="images/Chi_Psi_Seal.png" alt="">
</picture>
<div class="title-text">
<h1 class="greek">χ ψ</h1>
<h1 id = "cornell">Cornell University</h1>
</div>
<div class="title-space">
</div>
</div>
<button id = "hamburger" aria-label = "Toggle Navigation">
<!--Source: https://uxwing.com/hamburger-menu-icon/-->
<img src = "images/hamburger-menu-icon.svg" alt = "" id = "ham-image">
</button>
<nav id="widescreen-nav">
<ul>
<li><a href="index.html">About Us</a></li>
<li><a href="values.html">Values</a></li>
<li><a href="brothers.html">Brothers</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="recruitment.html">Recruitment</a></li>
</ul>
</nav>
<div id = "hamburger-menu" class = "hidden">
<nav>
<ul>
<li><a href="index.html">About Us</a></li>
<li><a href="values.html">Values</a></li>
<li><a href="brothers.html">Brothers</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="recruitment.html">Recruitment</a></li>
</ul>
</nav>
</div>
</header>
<div class="main-content">
<h1>Events</h1>
<div class="columns">
<div class="left-column">
<h2>Alumni Events</h2>
<p>Every year for homecoming, we welcome back our alumni brothers with events and activities that fill homecoming weekend. Twice per semester, we host one of our alumni to speak about their career and offer advice to our active brothers. These events are extremely beneficial for the professional development of our active brothers. In addition to our annual events, alumni often come to the Lodge when touring the university with their children and family.
</p>
<h3>Upcoming Events</h3>
<ul>
<li>11/20: Alumni Guest Speaker - Consulting, Willard Straight Hall</li>
<li>12/10: Winter Alumni Visit Day, Statler Hotel</li>
<li>12/11: Alumni and Brother Dinner, Chi Psi House</li>
<li>12/20: Virtual Alumni Holiday Celebration, Zoom</li>
</ul>
<picture>
<!--Source: https://www.chipsi.org/wp-content/uploads/2021/10/IMG_5002-scaled.jpg-->
<img src="images/alumni-pic.jpg" alt="Brotherhood" width="700" height="467">
</picture>
</div>
<div class="right-column">
<h2>Brotherhood Events</h2>
<p>At Cornell Chi Psi, we place a strong emphasis on our brotherhood events. We host weekly brotherhood events that foster bonding and bring our fraternity closer. Some of these events include scavenger hunts across Cornell's beautiful campus, movie nights in the Great rooms, basketball games on our court, and other fun activities. During the winter time, we set up a ski terrain park in the backyard for all brothers to show off their skills.</p>
<h3>Upcoming Events</h3>
<ul>
<li>11/19: Meet the Brothers, Chi Psi House</li>
<li>11/24: Brothers Thanksgiving, Chi Psi House</li>
<li>12/7: Backyard Ski Showcase, Chi Psi Backyard</li>
<li>12/15: Secret Santa and Christmas Celebration, Chi Psi House</li>
</ul>
<picture>
<!--Source: https://www.chipsi.org/wp-content/uploads/2020/02/IMG_5102-scaled.jpg-->
<img src="images/brotherhood-pic.jpg" alt="Brotherhood" width="700" height="467">
</picture>
</div>
</div>
</div>
<script src = "scripts/jquery-3.6.1.js"></script>
<script src = "scripts/hamburger-menu.js"></script>
<script src = "scripts/slideshow.js"></script>
</body>