-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 1.41 KB
/
index.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
<!DOCTYPE html>
<html>
<head><title>Spell Check</title>
<style>
#header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
#nav {
line-height:30px;
background-color:#FFFFFF;
height:480px;
width:13%;
float:left;
}
#section {
background-image: url("Images/1.jpg");
background-size: cover;
background-position: center center;
width:87%;
height: 480px;
float:right;
}
#footer {
background-color:black;
color:white;
clear:both;
font-weight: bold;
text-align:center;
padding:5px;
}
input[type=text]{
padding: 5px;
border: 2px solid black;
width:500px;
}
input[type=submit]{
background-color: #000000;
color: white;
font-weight: bold;
padding: 5px;
border: 2px solid white;
width:12%;
text-align:center;
}
</style>
</head>
<body>
<div id="header">
<h1> Spell Check</h1>
</div>
<div id="nav">
<br><br><br><a href="signup.php"><img src="Images/signup.jpg" alt="Sign Up" height="10%" width="100%"></a><br><br>
<a href="login.php"><img src="Images/login.jpg" alt="LOGIN" height="10%" width="100%"></a>
</div>
<div id="section">
<center><form action="check1.php" method="post">
<br><br><br><br><br><br><input type="text" name="1" id="1"><br><br>
<input type="submit" value="Submit">
</form></center>
</div>
<div id="footer">
<p>Ritvik Iyer and Sreecharan Challa</p>
</div>
</body>
</html>