-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (88 loc) · 3.8 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
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Friends</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-sm-12"><img id="friends" src="images/friends.jpeg">
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Opposite is Opposite</h1>
<img id="mainpic" src="images/opposite.jpeg" alt="Joey">
<div class="col-sm-8"><p id="main">Here Joey and Chandler are arguing over who gets to sit in the chair. Chandler hides Joey's underwear, so Joey decides to wear all of Chandler's clothes. Joey:"Ok buddy boy you hide my clothes, I'm wearing everything you own." Chandler:"Oh my god! That is so not the opposite of taking somebody's underwear." And this is where we get the famous quote, "I'm Chandler, could I be wearing anymore clothes"</p>
</div>
</div>
</div>
<div class="container" id="cast">
<h2>Cast Members</h2>
<div class="row">
<div class="col-lg-6">
<h4>Joey</h4>
<p>Joey Tribianni is an actor that lives with his best friend Chandler. He is an actor that loves food, especially sandwiches.</p>
</div>
<div class="col-lg-6">
<h4>Chandler</h4>
<p>Chandler Bing is the "funny guy" in the group. He is famous for his quick one-line jabs at the other friends.</p>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h4>Ross</h4>
<p>Ross Geller is Monica's older brother. He works as a paleontolgist and is known as the dinosaur guy.</p>
</div>
<div class="col-lg-6">
<h4>Rachel</h4>
<p>Rachel Green is Monica's childhood friend who shows up after leaving a man at the altar. Rachel and Ross have an on and off relationship throughout the entire season.</p>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<h4>Monica</h4>
<p>Monica Geller is Ross's baby sister. Monica is the overly neat freak who is obsessed with having everything in its place.</p>
</div>
<div class="col-lg-6">
<h4>Phoebe</h4>
<p>Phoebe Buffay is the groups "goofy girl." She plays her guitar in the coffee house, but is not very good. She always has some strange idea in her head.</p>
</div>
</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>