-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
32 lines (30 loc) · 919 Bytes
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Description</title>
<link rel="stylesheet" href="data.css">
</head>
<body class="data">
<h2>DATA DESCRIPTION</h2>
<button onclick="DataPage1()">ICRISAT-District Level Data</button><br/>
<button onclick="DataPage2()">Food Prices Data</button><br/>
<button onclick="DataPage3()">Rainfall</button><br/>
<button onclick="DataPage4()">Temperature</button><br/>
<script>
function DataPage1() {
window.location.href = 'icrisat.html';
}
function DataPage2() {
window.location.href = 'foodprices.html';
}
function DataPage3() {
window.location.href = 'rainfall.html';
}
function DataPage4() {
window.location.href = 'temperature.html';
}
</script>
</body>
</html>