-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
206 lines (198 loc) · 10.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style/main.css" rel="stylesheet" type="text/css" />
<title>Start</title>
</head>
<body>
<section id="main-content">
<input id="searchbox" type="text" placeholder="" autofocus onfocusout="searchUnfocus()"
onfocus="searchFocus()" />
<a href="https://weather.gc.ca/canada_e.html" id="weather">
<span id="location"> Loacation - </span>
<span id="temperature"> temperature </span>
<span id="weatherDescription"> description </span>
</a>
<section id="cards">
<div class="card" id="radio">
<h1>Radio 📻</h1>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
select
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<a href='https://www.youtube.com/results?search_query=chill'>
<button class="dropdown-item" type="button"> Chill Youtube</button>
</a>
<a href='https://mynoise.net/NoiseMachines/campingRainNoiseGenerator.php'>
<button class="dropdown-item" type="button">Rain</button>
</a>
</div>
</div>
</div>
<div class="card" id="school">
<h1>School 📚</h1>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
select
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<a href='https://dalonline.dal.ca'>
<button class="dropdown-item" type="button">dalonline</button>
</a>
<a href='https://dal.brightspace.com'>
<button class="dropdown-item" type="button">brightspace</button>
</a>
<a href='https://git.cs.dal.ca'>
<button class="dropdown-item" type="button">FCS GitLab</button>
</a>
<a href='https://web.cs.dal.ca/~vlado/csci6509/'>
<button class="dropdown-item" type="button">NLP Course Website</button>
</a>
<a href='https://dal.hosted.panopto.com/Panopto/Pages/Home.aspx'>
<button class="dropdown-item" type="button">panopto</button>
</a>
<a href='https://d2l.ai'>
<button class="dropdown-item" type="button">ML Book</button>
</a>
</div>
</div>
</div>
<div class="card" id="develop">
<h1>Develop ⌨️</h1>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
select
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<a href="https://github.com">
<button class="dropdown-item" type="button">GitHub</button>
</a>
<a href="https://trello.com/jameswilcox21/boards">
<button class="dropdown-item" type="button">trello</button>
</a>
<a href="https://leetcode.com">
<button class="dropdown-item" type="button">leetcode</button>
</a>
<a href='https://github.com/EbookFoundation/free-programming-books'>
<button class="dropdown-item" type="button">books</button>
</a>
<a href="https://mycareer.dal.ca/login/student.htm">
<button class="dropdown-item" type="button">mycareer</button>
</a>
<a href="https://app.clickup.com">
<button class="dropdown-item" type="button">clickup</button>
</a>
<a href="https://mt-gitlab.hide.ai/">
<button class="dropdown-item" type="button">MT GitLab</button>
</a>
</div>
</div>
</div>
<div class="card" id="personal">
<h1>Personal ⭐</h1>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
select
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<a href='https://www.messenger.com'>
<button class="dropdown-item" type="button">messenger</button>
</a>
<a href='https://www.youtube.com'>
<button class="dropdown-item" type="button">youtube</button>
</a>
<a href='https://www.twitter.com'>
<button class="dropdown-item" type="button">twitter</button>
</a>
<a href='https://www.twitch.tv'>
<button class="dropdown-item" type="button">twitch</button>
</a>
<a href='https://www.netflix.com'>
<button class="dropdown-item" type="button">netflix</button>
</a>
</div>
</div>
</div>
<div class="card" id="money">
<h1>Money 💸</h1>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
select
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<a href='https://www.rbcroyalbank.com'>
<button class="dropdown-item" type="button">rbc</button>
</a>
<a href='https://lae.novascotia.ca/sans/StudentPortal/Login.aspx'>
<button class="dropdown-item" type="button">loan</button>
</a>
<a href='https://www.koodomobile.com/my-account/'>
<button class="dropdown-item" type="button">phone</button>
</a>
<a href='https://service.aliant.bell.ca/myaccount/login/login.jsf?'>
<button class="dropdown-item" type="button">internet</button>
</a>
<a href='https://www.qtrade.ca/'>
<button class="dropdown-item" type="button">qtrade</button>
</a>
<a href='https://protege-secure.csnpe-nslsc.canada.ca/en/secure/dashboard'>
<button class="dropdown-item" type="button">nslsc</button>
</a>
<a href='https://www1.royalbank.com/cgi-bin/rbaccess/rbunxcgi?F22=4WN600S&7ASERVER=N601LD&LANGUAGE=ENGLISH&7ASCRIPT=/WebUI/Holdings/HoldingsHome#/currency'>
<button class="dropdown-item" type="button">practice trading</button>
</a>
<a href='https://www.creditviewdashboard.ca/CreditView/dashboard.page?enterprise=RBC'>
<button class="dropdown-item" type="button">credit dashboard</button>
</a>
</div>
</div>
</div>
</section>
</section>
<footer>
This page is a learning project and was made by studying the code of another cool startpage: <a
href="https://qnnie.github.io/YuruCamp-Startpage/" target="_blank">YuruCamp-Startpage</a>. It is still a
work in progress.
</footer>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.7.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.7.0/firebase-storage.js"></script>
<script>
// Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyBPPF6LPKotYrCKJlY5TEv9nobECAyFZVw",
authDomain: "homepage-dd7cf.firebaseapp.com",
databaseURL: "https://homepage-dd7cf.firebaseio.com",
projectId: "homepage-dd7cf",
storageBucket: "homepage-dd7cf.appspot.com",
messagingSenderId: "201762157349",
appId: "1:201762157349:web:cade24c7e1bd2bf2c3e0cc"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<script src="js/setBackground.js"></script>
<script src="js/index.js"></script>
<script src="./js/search.js"></script>
<script src="js/weather.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>