-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupcomingmovies.html
141 lines (141 loc) · 2.87 KB
/
upcomingmovies.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<html>
<head>
<title>Upcoming Movies Page of ShowOnWheels</title>
<link type="text/css" rel="stylesheet" href="ExternalStylesheet\homestylesheet.css" />
<script type="text/javascript">
function onlinebooking(){
alert("The Bookings for the Upcoming Movies are not Currently Available");
}
</script>
<style>
table
{
position:absolute;
top:140px;
left:10px;
right:120px;
border:solid 4px green;
}
td
{
text-align:center;
border:solid 1px green;
padding:3px;
}
th
{
background-color:green;
color:white;
border:solid 1px green;
}
tr{
color:green;
}
</style></head><body>
<h4><B><I><Center>Upcoming Movies</center></I></B></H4>
<table>
<tr>
<th>Movie Category</th>
<th>Movie Title</th>
<th colspan="3">Starring</th>
<th>Director</th>
<th>Release Date</th>
<th>Certificate</th>
<th>Online Bookings</th>
</tr>
<tr>
<td rowspan="2">Thriller</td>
<td>A Dame to kill for</td>
<td>Jennifer Lawrence</td>
<td>Patrick</td>
<td>Evan</td>
<td>Freddie Highmoree</td>
<td>12 Jan, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>Prisoners</td>
<td>Evan Rachel Wood</td>
<td>Rachel Wood</td>
<td></td>
<td>Victoria A.</td>
<td>19 Jan, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td rowspan="3">Romantic</td>
<td>A Walk to remember-II</td>
<td>Ellen Page</td>
<td>Rachel Wood</td>
<td>Victoria</td>
<td>Freddie Highmoree</td>
<td>27 Feb, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>Twilight Saga</td>
<td>Patrick</td>
<td>Wood A. Han</td>
<td>Victoria</td>
<td>Victoria A.</td>
<td>17 May, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>If Only_II</td>
<td>Ellina Smith</td>
<td>Rachel Wood</td>
<td></td>
<td>Robert Vann</td>
<td>23 June, 2013</td>
<td>A</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td rowspan="4">Action</td>
<td>Star Wars</td>
<td>Robert</td>
<td>Logan Lerman</td>
<td></td>
<td>Ariana Grande</td>
<td>23 June, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>Man of Steel</td>
<td>Patrick</td>
<td>Rachel Wood</td>
<td></td>
<td>Victoria A.</td>
<td>17 May, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>Area 52</td>
<td>Dianna</td>
<td>Alice</td>
<td></td>
<td>Robert S. Vann</td>
<td>28 Sep, 2013</td>
<td>A</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
<tr>
<td>2 Guns</td>
<td>Illiana</td>
<td>John Park</td>
<td>William</td>
<td>Josh Hutcherson</td>
<td>23 Oct, 2013</td>
<td>UA</td>
<td> <a href="" onclick="onlinebooking();">BookYourShow</a></td>
</tr>
</table>
</body>
</html>