-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MIT Featured Events</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="featured-events">
<h2 class="title">Featured Events</h2>
<div class="event-container">
<div class="event-column">
<h3 class="date">NOV 29</h3>
<p class="event-title">Disabled@MIT screens movie</p>
<p class="event-location">📍 Cambridge, MA</p>
</div>
<!-- Repeat the above column structure for the other events -->
<div class="event-column">
<h3 class="date">NOV 30</h3>
<p class="event-title">Entrepreneurial Moderation:
</p>
<p class="event-title">Managing Speech in the Era of the Influencer
</p>
<p class="event-location">📍 Cambridge, MA</p>
</div>
<div class="event-column">
<h3 class="date">DEC 01</h3>
<p class="event-title">Women at MIT Sloan:
Master of Finance Alumni Panel</p>
<p class="event-location">🌐 Online Event</p>
</div>
<div class="event-column">
<h3 class="date">DEC 04</h3>
<p class="event-title">Boston Area Diversity</p>
<p class="event-location">🌐 Online Event</p>
</div>
</div>
<button class="show-more-button">See All Events <span class="arrow">→</span></button>
<div class="divider"></div>
</div>
</body>
</html>