-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathok.html
46 lines (42 loc) · 1.46 KB
/
ok.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eclectica '23</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">Eclectica '23</div>
<div class="menu">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Events</a>
<a href="#">Support</a>
</div>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>Welcome to Eclectica '23</h1>
<p class="tagline">An Inception of Cultural Diversity Like No Other</p>
<div class="cta-buttons">
<button class="explore-btn">Explore Events</button>
<button class="apply-btn">Apply Now</button>
</div>
</div>
</section>
<section class="event-details">
<h2>Event Title</h2>
<p>Lorem Ipsum Greeting: Start with a polite salutation, addressing the principal. Introduce yourself and mention your purpose for writing. Provide a brief context for the application, explaining the training program, etc.</p>
</section>
<footer>
<div class="footer-content">
<p>© 2023 Eclectica '23. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>