59 lines
1.3 KiB
HTML
59 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Attendance</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
body {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background: #0b1220;
|
|
}
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.wrapper {
|
|
flex: 1;
|
|
display: flex;
|
|
}
|
|
iframe {
|
|
border: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #fff;
|
|
}
|
|
.header {
|
|
padding: 12px 16px;
|
|
color: #e6edf3;
|
|
font-family:
|
|
system-ui,
|
|
-apple-system,
|
|
Segoe UI,
|
|
Roboto,
|
|
Ubuntu,
|
|
Cantarell,
|
|
Noto Sans,
|
|
sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">Attendance Sheet</div>
|
|
<div class="wrapper">
|
|
<iframe
|
|
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSYaal3P7aplc7kuJj8zbeXboJjbos69DJyyxXu8JUCArWSPDCeubqMnmAAg_LFAZ8t-L_Pkpbv1MFG/pubhtml?gid=2023471118&single=true&widget=true&headers=false"
|
|
></iframe>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|