-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
95 lines (77 loc) · 2.91 KB
/
index.php
File metadata and controls
95 lines (77 loc) · 2.91 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home</title>
<?php include( 'php/include-head.php' ); ?>
</head>
<body style="background-color: rgb(217, 186, 64)" id="home">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Set Color Scheme-->
<style type="text/css">
.color-b { background-color: rgb(169, 28, 69); }
.color-c { color: rgb(169, 28, 69); }
.nav li a { border: 5px solid rgb(169, 28, 69); }
#current div { color: rgb(169, 28, 69); }
#current a span { color: rgb(169, 28, 69); }
.intro-list {
display: inline-block;
padding: 0;
margin: 0;
list-style: none;
}
.intro-list > li {
display: inline-block;
float: left;
clear: both;
}
.intro-list p {
}
#enter {
background-color: rgb(169, 28, 69);
display: block;
font-size: 44px;
text-decoration: none;
color: white;
text-align: center;
width: 400px;
}
</style>
<div class="color-b">
<h1 style="font-style: italic; text-align: center" class="white">
Modern American Stand-Up Comedy
</h1>
<div id="bar"></div>
</div>
<div class="yellow" style="padding-top: 5em">
<div class="gdcenter">
<ul class="nav">
<li id="current"><a href="70s.php"><span class="color-c">70s</span></a></li>
<li id="current"><a href="80s.php"><span class="color-c">80s</span></a></li>
<li id="current"><a href="90s.php"><span class="color-c">90s</span></a></li>
<li id="current"><a href="00s.php"><span class="color-c">00s</span></a></li>
<li id="current"><a href="10s.php"><span class="color-c">10s</span></a></li>
</ul>
<div class="col6" style="position: relative; top: 15px; margin-bottom: 2em; padding-bottom: 10em;">
<h3 class="red-text" style="font-size: 2.5em">Welcome! Stand-up comedy is one of the oldest American artforms. People love to laugh, and the funny business has been an important part of American culture throughout the twentieth century.
</h3>
<h3 class="red-text" style="font-size: 2.5em">
Enter this site to learn more about the rich history and events that have happened in the stand-up comedy.
Learn more about some of your favorite comics on an interactive grid and view some of their funniest sketches.
</h3>
<a id="enter-button" style="clear: both; float: left;" href="70s.php">Start the tour</a>
</div>
<div class="col6 last">
<img src="img/cover.jpg">
</div>
</div>
</div>
<?php include( 'php/include-foot.php' ); ?>
</body>
</html>