Spaces:
Running
Running
Merge pull request #75 from alecrem/feature/issue-69/add-page-on-docs
Browse files- docs/favicon.ico +0 -0
- docs/index.html +39 -0
docs/favicon.ico
ADDED
docs/index.html
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Middle School Tutor</title>
|
5 |
+
<link rel="shortcut icon" href="./favicon.ico" />
|
6 |
+
<meta charset="UTF-8" />
|
7 |
+
<meta
|
8 |
+
name="viewport"
|
9 |
+
content="width=device-width,initial-scale=1,shrink-to-fit=no"
|
10 |
+
/>
|
11 |
+
<style type="text/css">
|
12 |
+
body,
|
13 |
+
html {
|
14 |
+
margin: 0;
|
15 |
+
padding: 0;
|
16 |
+
height: 100%;
|
17 |
+
overflow: hidden;
|
18 |
+
}
|
19 |
+
|
20 |
+
#content {
|
21 |
+
position: absolute;
|
22 |
+
left: 0;
|
23 |
+
right: 0;
|
24 |
+
bottom: 0;
|
25 |
+
top: 0px;
|
26 |
+
}
|
27 |
+
</style>
|
28 |
+
</head>
|
29 |
+
<body>
|
30 |
+
<div id="content">
|
31 |
+
<iframe
|
32 |
+
width="100%"
|
33 |
+
height="100%"
|
34 |
+
frameborder="0"
|
35 |
+
src="https://alecrem-middleschool.hf.space"
|
36 |
+
></iframe>
|
37 |
+
</div>
|
38 |
+
</body>
|
39 |
+
</html>
|