-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.php
More file actions
109 lines (81 loc) · 3.85 KB
/
show.php
File metadata and controls
109 lines (81 loc) · 3.85 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
100
101
102
103
104
105
106
107
108
109
<!--li pe hover
inline kar article-->
<!DOCTYPE html>
<html>
<head>
<title>Band</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--Custom CSS-->
<link href="css/band.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="clearfix">
<ul id="head-li">
<li id="home"><a href="home.php">Home</a></li>
<li><a href="about.php">About</a></li>
<li id="band-name">The Rock Band</li>
<li><a href="show.php">Show</a></li>
<li><a href="register.php">Register</a></li>
</ul>
</div>
</nav>
</header>
<!--Div 3: Tour Dates-->
<!-- <div id="tour-bg">-->
<div class="fonts" id="tour-dates">
<h2>Tour Dates</h2>
<p>Remember to book your tickets!</p>
<div class="article-wrap">
<p id="oct">October</p>
<p id="nov">November</p>
<p id="dec">December</p>
<!--ARTICLES-->
<div class="clearfix">
<article class="a1"><!--NY article-->
<section class="sec-head">
<img src="Images/newyork.jpg" width="264" height="185" alt="newyork">
</section>
<section class="sec-body">
<h4>Mumbai</h4>
<p id="date"><time datetime="10/31/2017">31 Oct 2017</time></p>
<p>Ubi ut amet admodum,
cupi iudicem. </p>
</section>
</article><!--End of NY-->
<article class="a2"><!--Paris article-->
<section class="sec-head">
<img src="Images/paris.jpg" width="264" height="185" alt="paris">
</section>
<section class="sec-body">
<h4>Pune</h4>
<p id="date"><time datetime="11/01/2017">01 Nov 2017</time></p>
<p>Ubi ut amet admodum,
cupi iudicem. </p>
</section>
</article><!--End Paris-->
<article class="a3"><!--SanFran Article-->
<section class="sec-head">
<img src="Images/sanfran.jpg" width="264" height="185" alt="sanfran">
</section>
<section class="sec-body">
<h4>Delhi</h4>
<p id="date"><time datetime="11/1/2017">11 Nov 2017</time></p>
<p>Ubi ut amet admodum,
cupi iudicem. </p>
</section>
</article><!--End of Sanfran-->
</div>
<p>To know more about other events go <a href="register.php">Register</a> yourself Fan!</p>
</div><!--article wrap-->
</div><!--tour dates-->
<!-- </div>tour bg-->
<!--Copyright info-->
<div class="random-data">
<p>Powered by <a href="">KJSCE</a></p>
</div>
</body>
</html>