-
Notifications
You must be signed in to change notification settings - Fork 1
/
conference-theme.html
125 lines (122 loc) · 6.03 KB
/
conference-theme.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conference Theme | HCCRI</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Monda&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<script src="https://code.iconify.design/iconify-icon/1.0.3/iconify-icon.min.js"></script>
</head>
<body>
<div class="red-nav-s">
<a id="side-close" class="nav-link">×</a>
<a href="index.html" class="nav-link">Home</a>
<div class="dropdown">
<span class="nav-link">About</span>
<div class="dropdown-content">
<div class="nav-link-wrapper">
<a href="conference-theme.html" class="nav-link">Conference Theme</a>
</div>
<div class="nav-link-wrapper">
<a href="about-hccri.html" class="nav-link">HCCRI</a>
</div>
<div class="nav-link-wrapper">
<a href="about-hacas.html" class="nav-link">HACAS</a>
</div>
<div class="nav-link-wrapper">
<a href="about-secretariat.html" class="nav-link">The Secretariat</a>
</div>
</div>
</div>
<div class="dropdown">
<span class="nav-link">Conference</span>
<div class="dropdown-content">
<div class="nav-link-wrapper">
<a href="conference-schedule.html" class="nav-link">Conference Schedule</a>
</div>
<div class="nav-link-wrapper">
<a href="position-paper.html" class="nav-link">Position Paper</a>
</div>
</div>
</div>
<div class="dropdown">
<span class="nav-link">Councils</span>
<div class="dropdown-content">
<div class="nav-link-wrapper">
<a href="councils-overview.html" class="nav-link">Overview</a>
</div>
<div class="nav-link-wrapper">
<a href="councils-beginner.html" class="nav-link">Beginner</a>
</div>
<div class="nav-link-wrapper">
<a href="councils-intermediate.html" class="nav-link">Intermediate</a>
</div>
<div class="nav-link-wrapper">
<a href="councils-advanced.html" class="nav-link">Advanced</a>
</div>
<div class="nav-link-wrapper">
<a href="councils-crisis.html" class="nav-link">Crisis</a>
</div>
</div>
</div>
<div class="dropdown">
<span class="nav-link">Registration</span>
<div class="dropdown-content">
<div class="nav-link-wrapper">
<a href="registration.html" class="nav-link">Overview</a>
</div>
<div class="nav-link-wrapper">
<a href="registration-independent.html" class="nav-link">Independent Delegations</a>
</div>
<div class="nav-link-wrapper">
<a href="faq.html" class="nav-link">FAQ</a>
</div>
</div>
</div>
<a href="resources.html" class="nav-link">Resources</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div class="red-nav-m">
<a id="side-open" style="display: block;">☰</a>
<p>HCCRI XII</p>
</div>
<div class="hero-head about-hccri">
<div class="hero-head-content">
<img src="static/hccri-logo-transparent.png" alt="HACAS Logo" class="hccri-logo">
<h1 class="hero-title">Conference Theme</h1>
</div>
</div>
<div class="hero">
<div class="hero-main-content">
<div class="hero-main-content-left">
<h1 class="hero-title">HCCRI 2023: In motion, Chaos</h1>
<p class="hero-text">
Climate change, rising economic uncertainties, heightened international tensions - we are confronted with a world riddled with various challenges that have the ability to disrupt our lives in unfathomable fashions. As mankind advances, we are bound to face numerous waves of such “chaos”. Rather than shying away from them, the world - masses, politicians, nations - has to work together to confront them, as one.
<br><br>
HCCRI 2023 aims to expose delegates to a plethora of geopolitical issues that plague our world and to gain insights into the conundrum faced on the national and international stage in the world of policymaking. HCCRI 2023 hopes to empower delegates to embody the spirit of international collaboration, working together to derive their own innovative solutions rather than riding the tide.
<br><br>
The chaos we face may be inevitable, but it is not unsolvable. Will you take up the challenge, to ride the wave of chaos, and set a new world in motion?
</p>
</div>
</div>
</div>
<div class="footer">
<div class="footer-icons">
<div><iconify-icon icon="material-symbols:location-on-outline" width="25"></iconify-icon><span>661 Bukit
Timah Rd, Singapore 269734</span></div>
<div><iconify-icon icon="ic:outline-email"
width="25"></iconify-icon><span>[email protected]</span></div>
</div>
<p class="footer-small">© HCCRI XII</p>
</div>
</body>
<script src="script.js"></script>
</html>