-
Notifications
You must be signed in to change notification settings - Fork 0
/
squad.html
129 lines (105 loc) · 4.83 KB
/
squad.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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<link rel="shortcut icon" href="images/title.jpg" type="image/png">
<meta charset="utf-8">
<title>The Squad</title>
<link rel="stylesheet" href="css/zerogrid.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-latest.min.js"></script>
<script src="js/script.js"></script>
<script src="js/jquery183.min.js"></script>
</head>
<body>
<div class="wrap-body">
<!--////////////////////////////////////Header-->
<header class="bg-theme">
<div class="wrap-header zerogrid">
<div class="row">
<div id="cssmenu">
<ul>
<li><a href="index.php">Home</a></li>
<li class='active'><a href="squad.html">The Squad</a></li>
</ul>
</div>
<a href='index.php' class="logo"><img src="images/logo.png" /></a>
</div>
</div>
</header>
<!--////////////////////////////////////Container-->
<section id="container">
<div class="sub-header">
<div class="zerogrid">
<h1>Squad</h1>
</div>
</div>
<center><h1 style="font-family:Tahoma; font-size:30px;">Select Team<br /><br /><br /><br /></h1></center>
<center>
<form action="players.php" method="post">
<table cellpadding="10" cellspacing="5">
<tr>
<td class="tdhover">
<input type="radio" name="team" value="Mumbai Indians" style=" height:30px; width:30px;"/>
<img src="images/mi.jpg" width="120px" height="90px" ><h1><br /> Mumbai Indians</h1><br />
</td>
<td class="tdhover">
<input type="radio" name="team" value="Rajasthan Royals" style=" height:30px; width:30px;"/>
<img src="images/rr.jpg" width="120px" height="90px"><h1><br /> Rajasthan Royals</h1><br />
</td>
<td class="tdhover">
<input type="radio" name="team" value="Sunrisers Hyderabad" style=" height:30px; width:30px;" />
<img src="images/srh.jpg" width="120px" height="90px" ><h1><br /> Sunrisers Hyderabad</h1><br/>
</td>
<td class="tdhover">
<input type="radio" name="team" value="Delhi Daredevils" style=" height:30px; width:30px;"/>
<img src="images/dd.jpg" width="120px" height="90px" ><h1><br /> Delhi Daredevils</h1><br/>
</td>
</tr>
<tr >
<td class="tdhover">
<input type="radio" name="team" value="Kings XI Punjab" style=" height:30px; width:30px;" />
<img src="images/kix.jpg" width="120px" height="90px" ><h1><br /> Punjab Kings IX</h1><br/>
</td>
<td class="tdhover">
<input type="radio" name="team" value="Royal Challengers Bangalore" style=" height:30px; width:30px;" />
<img src="images/rcb.jpg" width="120px" height="90px" ><h1><br /> Royal Challengers<br/> Bangalore</h1><br/>
</td>
<td class="tdhover">
<input type="radio" name="team" value="Kolkata Knight Riders" style=" height:30px; width:30px;" />
<img src="images/kkr.jpg" width="120px" height="90px" ><h1><br /> Kolkata Knight Riders</h1><br/>
</td>
<td class="tdhover">
<input type="radio" name="team" value="Chennai Super Kings" style=" height:30px; width:30px;" />
<img src="images/csk.jpg" width="120px" height="90px" ><h1><br /> Chennai Super Kings</h1><br/>
</td>
</tr>
<tr>
<td colspan="4">
<center>
<input class="tdhover" type="submit" value="GET DETAILS" style="background-color:#353533; border-radius:8px; color:white; padding: 15px 32px; text-align:center; text-decoration: none; display: inline-block; font-size: 16px; margin-top: 10px;">
</center>
</td>
</tr>
</table>
</form>
</center>
</section>
<!--////////////////////////////////////Footer-->
<footer>
<div class="wrap-footer">
<div class="zerogrid">
<div class="row">
<h3>Contact</h3>
<span>Phone / +80 999 99 9999 </span></br>
<span>Email / info@domain.com </span></br>
<span>Studio / Moonshine St. 14/05 Light City </span></br>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>