Spaces:
Running
Running
File size: 769 Bytes
19c509b |
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>
<title>Middle School Tutor</title>
<link rel="shortcut icon" href="./favicon.ico" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<style type="text/css">
body,
html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
#content {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0px;
}
</style>
</head>
<body>
<div id="content">
<iframe
width="100%"
height="100%"
frameborder="0"
src="https://alecrem-middleschool.hf.space"
></iframe>
</div>
</body>
</html>
|