-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
104 lines (89 loc) · 4.66 KB
/
index.php
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
<?php
include 'html/header.html';
include 'html/navbar.html';
include 'html/banner.html';
?>
<!-- Marketing messaging and featurettes -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<hr>
<div class="container-marketing">
<!-- Three columns of text below the carousel -->
<div class="row updates">
<div class="col-lg-3">
<img class="img-circle" src="img/Globe_Logo_Blue.png">
<h2>Outreach Letter</h2>
<p><a class="btn btn-default" href="Outreach_Letter.php" role="button">
Read it now! »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3">
<img class="img-circle" src="img/Globe_Logo_Blue.png">
<h2>SG Letter </h2>
<p><a class="btn btn-default" href="SG_Letter.php" role="button">
Read it now! »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3">
<img class="img-circle" src="img/Globe_Logo_Blue.png">
<h2>Golden Bears Letter</h2>
<p><a class="btn btn-default" href="Golden_Bears_Letter.php" role="button">
Read it now! »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-3">
<img class="img-circle" src="img/Globe_Logo_Blue.png">
<h2>Delegate Welcome Letter</h2>
<p><a class="btn btn-default" href="ComingSoon.php" role="button">
Read it now! »</a></p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
<!-- START THE FEATURETTES -->
<hr>
<div class="row-front">
<div class="col-md-6">
<h2 class="featurette-heading">What is BMUN?</h2>
<p>Berkeley Model United Nations is a student run organization on the UC Berkeley campus
dedicated to continuing its six decades of excellence as the world’s premier — and very first
— United Nations simulation. Every March, over 1,500 high school students from all over the
world come to Berkeley to participate in Berkeley Model United Nations. Entering its 64th
session, BMUN’s mission is to spread awareness of international issues and the spirit of
diplomacy through UN simulations. We also aim to create an educational experience for high
school student, to help them realize their potential in public speaking as well as policy debate.
We do this by serving as head chairs on a diverse group of committees in which we help to
facilitate delegate education through substantive diplomatic debate. </p>
</div>
<div class="col-md-6">
<img class="featurette-image img-responsive hover-grey" src= "img/opening.jpg">
</div>
</div>
<hr>
<div class="row-front">
<div class="col-md-6">
<img class="featurette-image img-responsive hover-grey" src="img/Opening_Head_Chairs.jpg">
</div>
<div class="col-md-6">
<h2 class="featurette-heading">Who are we?</h2>
<p>The BMUN Secretariat comprises of 75 undergraduate students from UC Berkeley. Coming
from a diverse set of majors and backgrounds, each member of the secretariat shares a
common interest in international relations and a motivation to spread awareness of global
issues to high school students.</p>
</div>
</div>
<hr>
<div class="row-front">
<div class="col-md-6">
<h2 class="featurette-heading">Outreach</h2>
<p>BMUN’s Outreach Program is dedicated to helping local high schools build their
Model UN programs. As the program continues to grow around the Bay Area, BMUN strives
to help students increase their global awareness and develop public speaking skills.
BMUN also hosts its annual Delegate Workshop for Bay Area schools in November of each year,
during which the Secretariat teaches MUN rules and procedures, as well as the important
international issues facing our world today.</p>
</div>
<div class="col-md-6">
<img class="featurette-image img-responsive hover-grey" src = "img/Outreach.jpg">
</div>
</div>
<!-- /END THE FEATURETTES -->
</div>
<!-- Marketing Container -->
<?php
include 'html/footer.html';
?>