-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommittees.html
More file actions
106 lines (98 loc) · 4.62 KB
/
committees.html
File metadata and controls
106 lines (98 loc) · 4.62 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
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Committees - 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>Committees</h2>
<div class="card">
<p>
EBMUN 2026 features a diverse range of committees covering critical global issues.
Each committee provides delegates with the opportunity to engage in meaningful debate,
collaborate on solutions, and develop their diplomatic skills.
</p>
</div>
<div class="committees-grid">
<div class="committee-card">
<h3>Committee Session 1</h3>
<p><strong>Topic:</strong></p>
<p class="placeholder">
[Add committee name and topic here. Example: "UN Security Council - Addressing
Regional Conflicts in the Middle East"]
</p>
<p><strong>Difficulty Level:</strong> <span class="placeholder">[Beginner/Intermediate/Advanced]</span></p>
<p><strong>Delegation Size:</strong> <span class="placeholder">[Single or Double]</span></p>
</div>
<div class="committee-card">
<h3>Committee Session 2</h3>
<p><strong>Topic:</strong></p>
<p class="placeholder">
[Add committee name and topic here. Example: "UN General Assembly - Climate
Change and Sustainable Development Goals"]
</p>
<p><strong>Difficulty Level:</strong> <span class="placeholder">[Beginner/Intermediate/Advanced]</span></p>
<p><strong>Delegation Size:</strong> <span class="placeholder">[Single or Double]</span></p>
</div>
<div class="committee-card">
<h3>Committee Session 3</h3>
<p><strong>Topic:</strong></p>
<p class="placeholder">
[Add committee name and topic here. Example: "World Health Organization -
Global Pandemic Preparedness and Response"]
</p>
<p><strong>Difficulty Level:</strong> <span class="placeholder">[Beginner/Intermediate/Advanced]</span></p>
<p><strong>Delegation Size:</strong> <span class="placeholder">[Single or Double]</span></p>
</div>
</div>
<div class="card">
<h3>Committee Information</h3>
<p class="placeholder">
[Add additional information such as: background guides, country assignments,
committee procedures, special rules, etc.]
</p>
</div>
<div class="card">
<h3>Country Assignments</h3>
<p class="placeholder">
[Add information about how countries are assigned, when assignments will be released,
how to request specific countries, 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>