-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiary.html
35 lines (31 loc) · 1.22 KB
/
diary.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="google" content="notranslate"> <!-- 구글 번역기능 끄기 -->
<title>시간표 프로잭트</title>
<link rel="stylesheet" href="sideBar.css">
<link rel="stylesheet" href="table.css">
<script src="scheduling.js"></script>
<script src="removeSchedule.js"></script>
<script src="fileManagement.js"></script>
</head>
<body style="background-image: url('Background.jpg');">
<img src="logo.png" alt="Logo" style="width:30%; margin: 0 auto; display:block;">
<div id="mainGrid" style="margin: 0px 10px; margin-top:-20px;">
<aside>
<ol style="padding:0px;">
<li><button id="addModal">💗 시간표 추가 💗</button></li>
<li><button id="savefile" onclick=download()>💗 저장하기 💗</button></li>
<li><button id="loadfile" onclick=upload()>💗 불러오기 💗</button></li>
<li><a href="main.html"><button>💗 시간표 💗</button></a></li>
</ol>
</aside>
<div>
<script>
document.write(schedules[0].memo);
</script>
</div>
</div>
</body>
</html>