-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (89 loc) · 4.23 KB
/
Copy pathindex.html
File metadata and controls
99 lines (89 loc) · 4.23 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<script defer src="static/script.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DUQUESNE INCLINE</title>
<link rel="stylesheet" href="static/style.css">
<link href='https://fonts.googleapis.com/css?family=Georgia' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body onload="addYear()">
<!-- nav bar and image header -->
<nav class="topnav">
<a id="logo"><img src="static/logo.png" alt="Duquesne Logo" width="200" height="auto"/></a>
<li><a id="wordlogo">DUQUESNE INCLINE</a></li>
<li><a id="navy" href="views/discover.html">Discover</a></li>
<li><a id="navy" href="views/giftshop.html">Gift Shop</a></li>
<li><a id="navy" href="views/map.html">Find Us!</a></li>
<!-- "Hamburger menu" to toggle the navigation links -->
<div id="hamnav">
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i></a>
<ul id="hamnavlinks">
<li><a href="views/fares.html">Fares</a></li>
<li><a href="views/about.html">About</a></li>
<li><a href="views/FAQ.html">FAQ</a></li>
<li><a href="views/mailing.html">Join Our Mailing List!</a></li>
</ul>
</div>
</nav>
<div class="main">
<div class="wow">
<h2>Open 365 Days A Year!</h2>
<h3>Voted One of the Top 10 Sites in the World for Viewing a cityscape by USA Today!</h3>
</div><br>
<!-- container to display information -->
<div class="homecontainer">
<div class="section">
<h2 id="address">Address</h2>
<p>1197 WEST CARSON STREET<br>PITTSBURGH, PA. 15219</p>
</div>
<div class="section">
<h2 id="hours">Hours</h2>
<p>EVERYDAY<br>6:30am - 12:30am</p>
</div>
<div class="section">
<h2 id="parky">Parking</h2>
<p>1197 West Carson St.<br>Pittsburgh, PA. 15219</p>
</div>
</div><br>
<!-- embedded video from https://www.duquesneincline.org-->
<div id="video">
<iframe width="700" height="455" src="https://www.youtube.com/embed/ve3KMUIlSGk?si=Y-UGNmbQ4gs3-Z9l" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
<!-- Automatic slideshow animation with help from https://www.w3schools.com/howto/howto_js_slideshow.asp -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 4</div>
<img src="static/image1.jpg" style="width:100%">
<div class="text">The Plainedge High School Choir from Long Island N.Y.</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 4</div>
<img src="static/image2.jpg" style="width:100%">
<div class="text">Girl Scout Troop 54377</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 4</div>
<img src="static/image3.jpg" style="width:100%">
<div class="text">Girl Scout Troop 54377</div>
</div>
<div class="mySlides fade">
<div class="numbertext">4 / 4</div>
<img src="static/image4.jpg" style="width:100%">
<div class="text">Girl Scout Troop 54377</div>
</div>
</div>
<footer>
<p id="copyYear">Designed and Coded by Brenda Yu © </p>
<a class="footy">Home</a>
<a class="footy" href="views/discover.html">Discover</a>
<a class="footy" href="views/giftshop.html">Gift Shop</a>
<a class="footy" href = "views/map.html">Find Us!</a>
</footer>
</body>
</html>