-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
54 lines (49 loc) · 4.09 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - 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>
<!-- About Us Section -->
<div class="container my-5">
<div class="row">
<div class="col-md-6">
<h2>About Our Organization</h2>
<p>An art exhibition is traditionally the space in which art objects (in the most general sense) meet an audience. The exhibit is universally understood to be for some temporary period unless, as is occasionally true, it is stated to be a "permanent exhibition". In American English, they may be called "exhibit", "exposition" (the French word) or "show". In UK English, they are always called "exhibitions" or "shows", and an individual item in the show is an "exhibit".
<p>Such expositions may present pictures, drawings, video, sound, installation, performance, interactive art, new media art or sculptures by individual artists, groups of artists or collections of a specific form of art.</p>
<p>The art works may be presented in museums, art halls, art clubs or private art galleries, or at some place the principal business of which is not the display or sale of art, such as a coffeehouse. An important distinction is noted between those exhibits where some or all of the works are for sale, normally in private art galleries, and those where they are not. Sometimes the event is organized on a specific occasion, like a birthday, anniversary or commemoration.</p>
<p>The art exhibition has played a crucial part in the market for new art since the 18th and 19th centuries. The Paris Salon, open to the public from 1737, rapidly became the key factor in determining the reputation, and so the price, of the French artists of the day. The Royal Academy in London, beginning in 1769, soon established a similar grip on the market, and in both countries artists put great efforts into making pictures that would be a success, often changing the direction of their style to meet popular or critical taste. The British Institution was added to the London scene in 1805, holding two annual exhibitions, one of new British art for sale, and one of loans from the collections of its aristocratic patrons</p>
</div>
<div class="col-md-6">
<img src="https://th.bing.com/th?id=OSK.HERO6T3KWMsHiBaIRMSOmbGAR-iY4Yx3I605V_SwK653wpU&w=472&h=280&c=1&rs=2&o=6&dpr=1.5&pid=SANGAM" alt="About Us" class="img-fluid">
</div>
</div>
</div>
<!-- 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>