forked from Rakesh9100/Eventica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (79 loc) · 4.23 KB
/
index.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
<!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">
<meta name="description" content="Find tech conferences, cultural festivals, and exciting happenings in Bangalore with Eventica.">
<meta name="keywords" content="Eventica, events, meetups, tech conferences, Bangalore, events">
<meta name="author" content="Rakesh Roshan">
<meta name="copyright" content="Copyright Rakesh Roshan">
<link rel="icon" type="image/x-icon" href="./assets/images/favicons/favicon1.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap">
<link rel="stylesheet" href="./style.css">
<script src="https://kit.fontawesome.com/4cf6385dfa.js" crossorigin="anonymous"></script>
<title>Eventica</title>
</head>
<body>
<nav class="navbar">
<div class="container navbar-container">
<a href="index.html" class="logo-container">
<img src="./assets/images/logos/logo1.png" alt="Logo" class="logo">
<span class="logo-text">Eventica</span>
</a>
<div class="nav-items">
<ul class="nav-links">
<li><a href="index.html"><i class="fas fa-house"></i> Home</a></li>
<li><a href="./assets/about/about.html"><i class="fas fa-circle-info"></i> About</a></li>
<li><a href="./index.html#events"><i class="fas fa-calendar-alt"></i> Upcoming Events</a></li>
<li><a href="./assets/pastevents/pastevents.html"><i class="fas fa-calendar-check"></i> Past Events</a></li>
<li><a href="./assets/contact/contact.html"><i class="fas fa-phone"></i> Contact</a></li>
</ul>
<div class="theme-switcher">
<button id="theme-toggle" aria-label="Change theme color">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"/>
<path d="M12 1v2M12 21v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M1 12h2M21 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4"/>
</svg>
</button>
<div class="theme-options">
<button class="theme-btn" data-color="blue" aria-label="Blue theme"></button>
<button class="theme-btn" data-color="red" aria-label="Red theme"></button>
<button class="theme-btn" data-color="yellow" aria-label="Yellow theme"></button>
<button class="theme-btn" data-color="green" aria-label="Green theme"></button>
<button class="theme-btn" data-color="purple" aria-label="Purple theme"></button>
</div>
</div>
</div>
</div>
</nav>
<header id="home" class="hero">
<div class="hero-content">
<h1>Discover Bangalore's Events & Meetups</h1>
<p>Explore the best vibrant events, tech conferences, and exciting happenings in the Silicon Valley of India.</p>
<a href="#events" class="explore-button">Explore Events</a>
</div>
</header>
<main>
<section id="events" class="events">
<div class="container">
<h2 class="section-title">Upcoming Events</h2>
<div class="event-grid" id="upcoming-events">
<!-- Upcoming event cards will be dynamically inserted here -->
</div>
</div>
</section>
</main>
<!-- Scroll to top button -->
<a href="#" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>
<footer class="footer">
<div class="container">
<p>Created By Rakesh Roshan ❤️ | © 2024: All Rights Reserved</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>