-
Notifications
You must be signed in to change notification settings - Fork 0
/
Review2.html
81 lines (64 loc) · 1.18 KB
/
Review2.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
<!DOCTYPE html>
<html>
<head>
<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>
<fieldset>
<center><h1>Review Submitted !!</h1></center>
<p><button><a href="Home.html">Back to Home</a></button></p>
</article>
<footer>Copyright © Andibigboss.com</footer>
</div>
</body>
</html>