-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (61 loc) · 2.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href=""static/logo.png"">
<title>Album example for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="static/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="album.css" rel="stylesheet">
</head>
<body>
<form action="/Prediction" method="[POST,GET]">
<header>
<div class="navbar navbar-dark bg-dark box-shadow">
<div class="container d-flex justify-content-between">
<a href="#" class="navbar-brand d-flex align-items-center">
<strong>2021 SBP</strong>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">CO-2 Emission By Country </h1>
<p>
<a href="#" class="btn btn-secondary my-2">Home</a>
<input type="submit" class="btn btn-primary my-2" value="Prediction">
</p>
<h1 class="jumbotron-heading">About Project </h1>
<p class="lead text-muted">"A Machine Learning Model for calculating CO2 emission by country,Due to the
increasingly deteriorating environment, it is time the government to upgrade the energy consumption structure".Significantly reducing CO2 emissions from countries will not be easy, but as we
have data of countries emission by applying Machine Learning we can extract the important features for getting the output.
</div>
</section>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="static/js/vendor/jquery-slim.min.js"><\/script>')</script>
<script src="static/js/vendor/popper.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script src="static/js/vendor/holder.min.js"></script>
</form>
</body>
</html>