-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="index.css">
</head>
<body class="home">
<h1 class ="heading">MAPPING THE IMPACT OF CLIMATE CHANGE ON AGRICULTURAL PRODUCTIVITY AND FOOD PRICES IN INDIA</h1>
<div>
<button class="btn" onclick="redirectToDataPage()">DATA DESCRIPTION</button><br/>
<br></br>
<button class="btn" onclick="redirectToWorkflowPage()">WORK FLOW DIAGRAM</button><br/>
<br></br>
<button class="btn" onclick="redirectToVisualizationPage()">VISUALIZATION TASKS</button><br/>
<br></br>
</div>
<script>
function redirectToDataPage() {
window.location.href = 'data.html';
}
function redirectToWorkflowPage() {
window.location.href = 'workflow.html';
}
function redirectToVisualizationPage() {
window.location.href = 'visualizationtasks.html';
}
</script>
</body>
</html>