-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepisodes.html
105 lines (90 loc) · 3.64 KB
/
episodes.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Episodes</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Friends <span class="glyphicon glyphicon-home" aria-hidden="true"></span></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="quotes.html" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Quotes<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="quotes.html">Joey</a></li>
<li><a href="quotes.html#chandler">Chandler</a></li>
<li><a href="quotes.html#ross">Ross</a></li>
<li><a href="quotes.html#rachel">Rachel</a></li>
<li><a href="quotes.html#monica">Monica</a></li>
<li><a href="quotes.html#phoebe">Phoebe</a></li>
</ul>
</li>
<li><a href="episodes.html">Episodes</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="col-lg-12"><img id="friends" src="images/friends.jpeg">
</div>
</div>
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
</ol>
<!--Wrapper for slides-->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/joeyfood.jpeg" alt="food" width="460px" height="345px">
</div>
<div class="item">
<img src="images/gameshow.jpeg" alt="gameshow" width="460px" height="345px">
</div>
<div class="item">
<img src="images/seven.jpeg" alt="seven" width="460px" height="345px">
</div>
<div class="item">
<img src="images/unisex.jpeg" alt="unisex" width="460px" height="345px">
</div>
<div class="item">
<img src="images/cheesecake.jpeg" alt="cheesecake" width="460px" height="345px">
</div>
<div class="item">
<img src="images/pizza.jpeg" alt="unisex" width="460px" height="345px">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>