-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (79 loc) · 1.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
<title>Homework</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
>
<link
rel="icon"
type="image/png"
href="icon.png"
/>
<link
rel="stylesheet"
href="index.css"
/>
<link
rel="apple-touch-icon"
href="icon.png"
>
</head>
<body>
<div class="header">
<h1>My Homework</h1>
</div>
<div class="container">
<div class="site reading-eggs">
<img
data-url="https://sso.readingeggs.com/login"
src="images/reading-eggs.png"
alt="Reading Eggs"
/>
</div>
<div class="site mathletics">
<img
data-url="https://studentportal.mathletics.com/class/46/1/home"
src="images/mathletics.png"
alt="Mathletics"
/>
</div>
<div class="site multilit">
<img
data-url="https://library.multilit.com/student-dashboard"
src="images/multilit.png"
alt="MultiLit"
/>
</div>
<div class="site study-ladder">
<img
data-url="https://www.studyladder.com.au/student"
src="images/study-ladder.png"
alt="Study Ladder"
/>
</div>
<div class="site seesaw">
<img
data-url="https://app.seesaw.me"
src="images/seesaw.png"
alt="Seesaw"
/>
</div>
<div class="site typing-club">
<img
data-url="https://www.typingclub.com"
src="images/type-club.png"
alt="Type Club"
/>
</div>
</div>
<script>
document.querySelectorAll('.site img').forEach(image => image.addEventListener('click', () => window.open(image.getAttribute('data-url'))));
</script>
</body>
</html>