-
Notifications
You must be signed in to change notification settings - Fork 0
/
Review.html
152 lines (113 loc) · 3.11 KB
/
Review.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
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
div.container {
width: 100%;
border: 1px solid gray;
}
header, footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
}
nav {
float: left;
max-width: 160px;
margin: 0;
padding: 1em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul a {
text-decoration: none;
}
article {
margin-left: 170px;
border-left: 1px solid gray;
padding: 1em;
overflow: hidden;
}
div {background-color:#CC9999;
height:100px;
}
a {text-decoration:none}
a:hover{background-color:#CCFFFF}
</style>
</head>
<body>
<header>
<h1>CLOSERS</h1>
</header>
<nav>
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Character.html">Character</a> </li>
<li><a href="Register.html">Register</a></li>
<li><a href="Login.html">Login</a> </li>
<li><a href="Review.Html">Review</a> </li>
</ul>
</nav>
<article>
<form action="" method="get">
<fieldset>
<legend>Your Details </legend>
<table border="0"width="100% ">
<td><b>Name </b><td><input size="50" type="text" name="username"/></td></td><tr/>
<td><b>E-Mail</b><td><input size="50" type="mail" name="mypassword"/></td></td><tr/>
</table>
</fieldset></br>
<fieldset>
<legend>Your Review:</legend>
<p><b>What do you think about us?</b></p>
<td><b><img src="IMAGE/closer2.png" align="right" width="50%" height="40%"></b></td>
<select name="referrer" id="hear-about">
<option value="excellent">Excellent</option>
<option value="goodood">Good</option>
<option value="great">Great</option>
<option value="other">Other</option>
</select></p>
<p><b>Do you like this game??</b><br/>
<input type="radio" name="rating" value="yes"/>Yes
<input type="radio" name="rating" value="no"/>No
<input type="radio" name="rating" value="maybe"/>Maybe
</p>
<p><b>Comments:</br></b>
<textarea rows="4" cols="40" id="comments"></textarea></p>
<input type="checkbox" name="subscribe" checked="checked"/>
Sign me up for email updates
<p></p>
<p></p>
<!-- Trigger the modal with a button 1 -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#Mymodal1">Submit</button>
<!-- Trigger the modal with a button 2 -->
<button type="reset" class="btn btn-info btn-lg" data-toggle="modal" data-target="#Mymodal2">Cancel</button>
<!-- Modal 1 -->
<div id="Mymodal1" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="reset" data-dismiss="modal">×</button>
<h4 class="modal-title">Review Submitted!!</h4>
</div>
</div>
</div>
</div>
</fieldset>
<p><button><a href="Home.html">Back to Home</a></button></p>
</article>
<footer>Copyright © Andibigboss.com</footer>
</div>
</body>
</html>