-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (82 loc) · 1.75 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>predict movie</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.hero-image {
background-image: url("predict.PNG");
background-color: #cccccc;
height: 500px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #37474F;
background-color: #E3F2FD;
padding:0 10px;
}
input[type=submit] {
width: 100%;
background-color: #2962FF;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #1A237E;
}
.formDiv {
border-radius: 5px;
background-color: #B3E5FC;
padding: 20px;
width:25%;
float:left;
font-size:20px;
}
#div1{
margin:5% 4% 5% 16%;
}
#div2{
margin:5% 10% 5% 8%;
}
label{
color:#263238;
}
</style>
</head>
<body>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:50px">Movie Success Prediction</h1>
<h2>Know flop, hit, super-hit movies before release.</h2>
<h3>Enjoy!</h3>
</div>
</div>
<div class="formDiv" id="div1">
<form action="name.php">
<label>Search by Movie Name</label>
<input type="submit" value="Proceed">
</form>
</div>
<div class="formDiv" id="div2">
<form action="crew.php">
<label>Search by Film Crew</label>
<input type="submit" value="Proceed">
</form>
</div>
</body>
</html>