-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredict.html
More file actions
40 lines (35 loc) · 889 Bytes
/
Copy pathpredict.html
File metadata and controls
40 lines (35 loc) · 889 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* Add a background color and some padding around the form */
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
a[type=submit]{
background-color: #04AA6D;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
body {
color:white;
background-size: cover;
background-image: url('https://cdn.wallpapersafari.com/48/59/SD3pTI.jpg');
}
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vehicle Performance Prediction</title>
</style>
</head>
<body>
<h1>The vehicle performance is: </h1>
<h1>{{predict}} mpg</h1>
<a href="/" type="submit">Go Back</a>
</body>
</html>