-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (81 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Art Exhibition Events</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Art Exhibition</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="events.html">Events</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Jumbotron -->
<div class="jumbotron text-center">
<h1 class="display-4">Welcome to Art Exhibition Events</h1>
<p class="lead">Discover and celebrate the best local art exhibitions.</p>
<img src="image/479cd712af06017c64e3e6c1a682b74c.jpg" alt="Art Exhibition" class="img-fluid my-4">
</div>
<!-- Featured Events Carousel -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://media.architecturaldigest.com/photos/5d9fa21d01e51400080e903c/master/w_1600%2Cc_limit/1F0A9AA7-9107-4AC2-889D-8594F8D371A0.JPG" class="d-block w-100" alt="Art 1">
<div class="carousel-caption d-none d-md-block">
<h5>Modern Art Exhibit</h5>
<p>Experience the latest trends in modern art.</p>
</div>
</div>
<div class="carousel-item">
<img src="https://i.pinimg.com/736x/14/70/85/1470850e2e546a3a763e7f26e5764596.jpg" class="d-block w-100" alt="Art 2">
<div class="carousel-caption d-none d-md-block">
<h5>Abstract Art Display</h5>
<p>Explore the world of abstract art.</p>
</div>
</div>
<div class="carousel-item">
<img src="https://durhamarts.org/wp-content/uploads/2022/02/22-Members-Showcase_left-wall-scaled.jpg" class="d-block w-100" alt="Art 3">
<div class="carousel-caption d-none d-md-block">
<h5>Local Artists Showcase</h5>
<p>Celebrate the talent of our local artists.</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<br>
<br>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-4">
<p>© 2024 Art Exhibition Events. All rights reserved.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>