-
Notifications
You must be signed in to change notification settings - Fork 0
/
visualizationtasks.html
74 lines (60 loc) · 1.95 KB
/
visualizationtasks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visualization Tasks</title>
<link rel="stylesheet" href="visualizationtasks.css">
</head>
<body>
<h1> Visualization Tasks </h1>
<div class="button-container">
<div class="column" >
<button class="btn" onclick="task1()">TASK-1</button><br/>
<button class="btn" onclick="task2()">TASK-2</button><br/>
<button class="btn" onclick="task3()">TASK-3</button><br/>
<button class="btn" onclick="task4()">TASK-4</button><br/>
<button class="btn" onclick="task5()">TASK-5</button><br/>
</div>
<div class="column">
<button class="btn" onclick="task6()">TASK-6</button><br/>
<button class="btn" onclick="task7()">TASK-7</button><br/>
<button class="btn" onclick="task8()">TASK-8</button><br/>
<button class="btn" onclick="task9()">TASK-9</button><br/>
<button class="btn" onclick="task10()">TASK-10</button><br/>
</div>
</div>
<script>
function task1() {
window.location.href = 'task1.html';
}
function task2() {
window.location.href = 'task2.html';
}
function task3() {
window.location.href = 'task3.html';
}
function task4() {
window.location.href = 'task4.html';
}
function task5() {
window.location.href = 'task5.html';
}
function task6() {
window.location.href = 'task6.html';
}
function task7() {
window.location.href = 'task7.html';
}
function task8() {
window.location.href = 'task8.html';
}
function task9() {
window.location.href = 'task9.html';
}
function task10() {
window.location.href = 'task10.html';
}
</script>
</body>
</html>