-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
191 lines (186 loc) · 8.12 KB
/
about.html
File metadata and controls
191 lines (186 loc) · 8.12 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BU openhouse - About US</title>
<link rel="stylesheet" href="css/styles.css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<main class="h-auto w-full">
<div
class="flex flex-col md:flex-row justify-between items-center md:h-[100px] w-full sticky top-0 animate-class z-50 px-5 navbar"
>
<div
class="containers flex flex-row justify-between items-center h-[110px] w-full sticky top-0 animate-class z-50 px-5"
>
<div class="hidden md:flex justify-center items-center gap-4">
<a
href="registration.html"
class="bg-gradient-to-r from-[#961ADF] to-[#F68129] font-bold text-white px-8 py-2 rounded-full border-2 border-white hover:scale-95 transition-all hover:rotate-3 hover:drop-shadow-[0_10px_10px_rgba(247,80,183,0.25)]"
>Registration</a
>
</div>
<div class="flex justify-center items-center gap-5">
<div class="bg">
<img src="image/buicon.png" alt="logo" class="h-[50px] w-auto" />
</div>
</div>
<div
class="hidden md:flex flex-row justify-between items-center rounded-xl drop-shadow-xl"
>
<a
href="home.html"
class="text-[#ffffff] text-[16px] font-medium transition-all hover:bg-white hover:bg-opacity-20 px-4 py-2 rounded-full"
>Home</a
>
<a
href="about.html"
class="text-[#ffffff] text-[16px] font-medium transition-all hover:bg-white hover:bg-opacity-20 px-4 py-2 rounded-full"
>About</a
>
<a
href="FAQ.html"
class="text-[#ffffff] text-[16px] font-medium transition-all hover:bg-white hover:bg-opacity-20 px-4 py-2 rounded-full"
>FAQ</a
>
</div>
<!-- Mobile menu icon -->
<div class="flex md:hidden">
<svg
id="menu-btn"
xmlns="http://www.w3.org/2000/svg"
width="2.5em"
height="2.5em"
viewBox="0 0 24 24"
>
<g fill="none">
<path
d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z"
/>
<path
fill="#ffffff"
d="M20 17.5a1.5 1.5 0 0 1 .144 2.993L20 20.5H4a1.5 1.5 0 0 1-.144-2.993L4 17.5zm0-7a1.5 1.5 0 0 1 0 3H4a1.5 1.5 0 0 1 0-3zm0-7a1.5 1.5 0 0 1 0 3H4a1.5 1.5 0 1 1 0-3z"
/>
</g>
</svg>
</div>
</div>
<!-- Mobile Menu (initially hidden) -->
<div
id="mobile-menu"
class="hidden flex-col w-full justify-center items-center gap-8 text-white pb-10"
>
<a href="home.html" class="text-white text-[16px] font-medium">Home</a>
<a href="about.html" class="text-white text-[16px] font-medium"
>About</a
>
<a href="speaker.html" class="text-white text-[16px] font-medium"
>Speaker</a
>
<a
href="FAQ.html"
class="bg-gradient-to-r from-[#961ADF] to-[#F68129] font-bold text-white px-8 py-2 rounded-full border-2 border-white"
>FAQ</a
>
</div>
</div>
<script>
const menuBtn = document.getElementById("menu-btn");
const mobileMenu = document.getElementById("mobile-menu");
menuBtn.addEventListener("click", () => {
// Toggle the hidden class
mobileMenu.classList.toggle("hidden");
mobileMenu.classList.add("flex");
// You can also add a class for animation if needed
});
</script>
<div
class="containers-read flex flex-col justify-center items-center py-20 animate-class px-8"
>
<div class="flex flex-col justify-center items-center">
<h1
class="bg-gradient-to-r from-[#961ADF] to-[#F68129] bg-clip-text text-transparent font-bold text-center text-[60px] md:text-[120px] animate-class"
>
What is BU Openhouse?
</h1>
</div>
</div>
<div
class="flex flex-col justify-center items-start px-8 gap-8 containers-read"
>
<div class="text-white font-bold text-[40px]">About US</div>
<p class="text-white pb-5">
<strong>Bangkok University Openhouse 2024</strong> is an exciting
opportunity for prospective students, parents, and educators to explore
what the university has to offer. Set to take place on campus, this
event provides a comprehensive look into academic programs, student
life, and the vibrant community at Bangkok University (BU).
</p>
<img src="image/banner.png" alt="pic" />
<div class="text-white font-bold text-[40px]">
Here’s what you can expect at BU Openhouse 2024
</div>
<img src="image/act/8.jpg" alt="pic" class="rounded-3xl" />
<p class="text-white py-3">
<strong class="text-[30px]">Academic Program Showcase</strong><br />
is an exciting opportunity for prospective students, parents, and
educators to explore what the university has to offer. Set to take place
on campus, this event provides a comprehensive look into academic
programs, student life, and the vibrant community at Bangkok University
(BU).
</p>
<img src="image/camp.jpg" alt="pic" class="rounded-3xl w-full" />
<p class="text-white py-3">
<strong class="text-[30px]">Campus Tours</strong><br />
Guided tours will give visitors a chance to explore the university’s
modern facilities, including cutting-edge labs, creative studios,
student centers, and more. This is a great way to visualize student life
and get a feel for the campus environment.
</p>
<img src="image/act/10.jpg" alt="pic" class="rounded-3xl w-full" />
<p class="text-white py-3">
<strong class="text-[30px]">Workshops and Demonstrations</strong><br />
BU Openhouse 2024 will feature engaging workshops, where prospective
students can experience hands-on learning in their field of interest.
These sessions will provide insights into how classes are conducted and
how BU's curriculum prepares students for the real world.
</p>
<img src="image/lift.jpg" alt="pic" class="rounded-3xl w-full" />
<p class="text-white py-3">
<strong class="text-[30px]">Student Life and Clubs</strong><br />
Learn more about extracurricular activities, student organizations, and
clubs that are available at BU. Current students will be present to
share their experiences, helping attendees understand how they can get
involved in activities that enhance both personal and professional
growth.
</p>
</div>
<footer class="bg-black py-8 px-5">
<div
class="containers mx-auto flex flex-col md:flex-row justify-between items-center text-white"
>
<div class="mb-4 md:mb-0">
<h3 class="text-lg font-bold">BU Open House</h3>
<p class="text-sm text-gray-400">
© 2024 Pai Peam Dream. All rights reserved.
</p>
</div>
<div class="flex space-x-4">
<a href="" class="text-gray-400 hover:text-white transition-all"
>Privacy Policy</a
>
<a href="" class="text-gray-400 hover:text-white transition-all"
>Terms of Service</a
>
<a
href="contact.html"
class="text-gray-400 hover:text-white transition-all"
>Contact Us</a
>
</div>
</div>
</footer>
<script src="js/app.js"></script>
</main>
</html>