-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
40 lines (40 loc) · 1.29 KB
/
gallery.html
File metadata and controls
40 lines (40 loc) · 1.29 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="general.css">
<title>Index</title>
<style>
body {
background-color: #f3efe8;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<div class="navbar">
<a id="title" href="index.html">Margulis School of Music</a>
<a id="navtitles" href="contact.html">Contact Us</a>
<a id="navtitles" href="details.html">Lesson details</a>
<a id="navtitles" href="gallery.html" class="active">Gallery</a>
<a id="navtitles" href="WhoWeAre.html">Who We Are</a>
</div>
<table class="container">
<tr>
<th style="width: 15%;">
<button class="left" onclick="plusDivs(-1)"></button>
</th>
<th style="width: 70%; height: 70%;">
<center>
<img class="slides" src="slide2.jpg" style="height: 650px;">
<img class="slides" src="slide1.jpeg" style="height: 650px;">
<img class="slides" src="slide3.jpg" style="height: 650px;">
</center>
</th>
<th style="width: 15%;">
<button class="right" onclick="plusDivs(1)"></button>
</th>
</tr>
</table>
<script src="gallery.js"></script>
</body>
</html>