-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (39 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MyL3 External Data</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="header">
<span id="heading" onclick="window.location='/'"> My Lifelong Learning Lab</span>
</div>
<div class="container center_column">
<div class="boxes">
<div class="button_lg center_column" onclick="window.location='/quickNotes.html'">
<strong>Quick Notes</strong>
Track What matters to you
</div>
<div class="button_lg center_column" onclick="window.location = '/views/playground.html'">
<strong>Playground</strong>
Reflect on your collected data
</div>
</div>
</div>
<div class="footer">
<div class="footer_btn" id="ftr_btn_1" onclick="window.location.href='/'">Home</div>
<div class="footer_btn" id="ftr_btn_2" onclick="window.location='/quickNotes.html'">Quick Notes</div>
<div class="footer_btn" id="ftr_btn_3" onclick="window.location='/views/playground.html'">Playground</div>
</div>
<script src="lib/jquery-3.3.1.min.js"></script>
<script>
$('.footer_btn').removeClass('active');
$('#ftr_btn_1').addClass('active');
</script>
</body>
</html>