-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
129 lines (105 loc) · 4.78 KB
/
404.html
File metadata and controls
129 lines (105 loc) · 4.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <script src="main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>$("head").load("head.html");</script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personalized Learning Squared</title>
<!--jQuery must also be linked for Bootstrap to function-->
<script src="main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--fonts-->
<link
href="https://fonts.googleapis.com/css?family=Nunito:300,400,500,600,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700&display=swap"
rel="stylesheet"
/>
<!-- <link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/> -->
<!-- This website uses Bootstrap JS and CSS through links to MaxCDN's CDN supported version-->
<!-- <link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script> -->
<!-- Testing updated version of bootstrap 4 for drop shadows -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
crossorigin="anonymous"></script>
<!-- <link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&display=swap" rel="stylesheet"> -->
<!-- for mailchimp -->
<link href="//cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; width:100%;}
/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<!-- for fontawesome (icons, esp on faq) -->
<link href="css/font-awesome.min.css" rel="stylesheet" />
<!--custom css-->
<link href="index.css" rel="stylesheet" />
<link href="general.css" rel="stylesheet" />
<link href="other-pages.css" rel="stylesheet" />
<!--custom js-->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> -->
<!-- <link rel="icon" href="favicon.ico" /> -->
<!-- Favicon Code -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body onload="initialize();">
<!-- <div id="header"></div> -->
<nav class="navbar navbar-expand-lg navbar-light mx-lg-5 border-bottom">
<a class="navbar-brand" href="index.html">
<img
height="36"
width="240"
class="pl2-logo"
style="margin-bottom: 10px"
alt="PLUS"
src="images/plus-logo.svg"
/>
</a>
</nav>
<div class="container-fluid pb-5">
<div class="container">
<div class="row pt-5 align-items-center justify-content-center">
<div class="col-md-4 text-center text-md-left">
<h1>Page Not Found</h1>
<p class="pt-4 pb-3">We can't find the page you were looking for.</p>
<div class="pt-0 pt-md-4">
<a href="index.html"
class="btn btn-primary p-3">Back to Home</a>
</div>
</div>
<div class="col-md-6 pt-4 pt-md-0">
<img alt="Bug fixing cartoon image" class="img-fluid" src="images/undraw/undraw_bug_fixing_oc7a 1.png">
</div>
</div>
</div> <!-- End Container -->
</div> <!-- This closes the above container-fluid -->
<!-- <div id="footer"></div> -->
</body>
</html>