-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (58 loc) · 2.43 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
<!DOCTYPE html>
<html>
<title>Predict Forest Fires</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body, h1, h2, h3, h4, h5, h6 {
font-family: "Lato", sans-serif;
}
body, html {
height: 100%;
color: #777;
line-height: 1.8;
}
</style>
<head>
<title>Predict Forest Fires</title>
<link rel="shortcut icon" href="./img/logo.ico" />
<meta name="viewport" content="initial-scale=1.0, width=device-width"/>
<link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.0/mapsjs-ui.css?dp-version=1533195059"/>
<script type="text/javascript" src="https://js.api.here.com/v3/3.0/mapsjs-core.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.0/mapsjs-service.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.0/mapsjs-ui.js"></script>
<script type="text/javascript" src="https://js.api.here.com/v3/3.0/mapsjs-mapevents.js"></script>
</head>
<body background="img/new_background.jpg">
<br>
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity">PREDICT <span
class="w3-hide-small">FOREST</span> FIRES</span><br>
<br/><br/>
<div class="w3-center">
<div class="w3-row-padding">
<div class="w3-half w3-row-padding">
<div id="map" style="width: 1000px; height: 650px; background: grey"></div>
</div>
<div class="w3-half w3-row-padding">
<h1 id="text"></h1>
<h4 id="h4"></h4>
<button class="w3-button w3-black w3-center w3-section w3-xlarge" type="submit" id="graph">
PREDICT FIRE SPREAD
</button>
</div>
</div>
</div>
<br/><br/><br><br>
<footer class="w3-center w3-black w3-padding-64">
<div class="w3-xlarge w3-section">
<a href="https://github.com/MohibAyub"><i class="fa fa-github w3-hover-opacity"></i></a>
<a href="https://www.linkedin.com/in/mohib-ayub-009a33147/"><i class="fa fa-linkedin w3-hover-opacity"></i></a>
<a href="https://instagram.com/mohibayub23"><i class="fa fa-instagram w3-hover-opacity"></i></a>
</div>
</footer>
<script src="js/map.js"></script>
</body>
</html>