-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
99 lines (92 loc) · 4.1 KB
/
about.html
File metadata and controls
99 lines (92 loc) · 4.1 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
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - EBMUN</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="container">
<a href="index.html" class="logo">EBMUN</a>
<button class="menu-toggle" onclick="toggleMenu()">☰</button>
<ul id="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="committees.html">Committees</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="registration.html">Registration</a></li>
<li><a href="position-paper-guide.html">Position Paper Guide</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main>
<div class="container">
<section>
<h2>About EBMUN</h2>
<div class="card">
<h3>Our Mission</h3>
<p>
The East Bay Model United Nations (EBMUN) Conference is dedicated to fostering
global awareness, diplomatic skills, and critical thinking among high school students.
We believe in providing an accessible, educational, and engaging Model UN experience
that prepares delegates for leadership roles in an interconnected world.
</p>
</div>
<div class="card">
<h3>Conference Overview</h3>
<p>
EBMUN brings together students from across the East Bay and beyond to participate
in simulated United Nations committees. Delegates represent countries, debate
pressing international issues, draft resolutions, and work collaboratively to
address global challenges.
</p>
<p>
Our conference features diverse committees covering topics from security and
human rights to environmental policy and economic development. With experienced
staff and a supportive learning environment, EBMUN is the perfect place for both
seasoned delegates and newcomers to Model UN.
</p>
</div>
<div class="card">
<h3>What Makes EBMUN Special</h3>
<ul>
<li>Experienced and dedicated staff committed to delegate education</li>
<li>Diverse range of committees and topics</li>
<li>Focus on both learning and competition</li>
<li>Welcoming environment for all skill levels</li>
<li class="placeholder">[Add more unique features or highlights]</li>
</ul>
</div>
<div class="card">
<h3>Our History</h3>
<p class="placeholder">
[Add information about when EBMUN was founded, previous conferences, growth over the years,
notable achievements, etc.]
</p>
</div>
<div class="card">
<h3>Organizing Team</h3>
<p class="placeholder">
[Add information about the secretariat, organizing committee, advisors, etc.]
</p>
</div>
</section>
</div>
</main>
<footer>
<div class="container">
<p>© 2026 EBMUN - East Bay Model United Nations</p>
<p>California High School, San Ramon</p>
</div>
</footer>
<script>
function toggleMenu() {
const menu = document.getElementById('nav-menu');
menu.classList.toggle('active');
}
</script>
</body>
</html>