-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin-Lab6-graphics.php
More file actions
24 lines (23 loc) · 962 Bytes
/
Admin-Lab6-graphics.php
File metadata and controls
24 lines (23 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chart</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "Admin-menu.php";
?>
<div class="section">
<div class="container">
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQ_rn-0_o7Y7kVFtKxuoOKgtpRbrqK3ShjmJArQKPtKPE60DclMK1SXXJxAt-97yReARhLWpJR_HsdF/pubhtml?gid=227468543&single=true&widget=true&headers=false" width="100%" height="1000"></iframe>
</div>
</div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/chart.js/dist/chart.umd.min.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>