-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
55 lines (48 loc) · 1.87 KB
/
main.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="css/date.css"/>
<link rel="stylesheet" href="css/popup.css"/>
<link rel="stylesheet" href="css/todo.css"/>
<link rel="stylesheet" href="css/greeting.css"/>
<link rel="stylesheet" href="css/calendar.css"/>
<link rel="stylesheet" href="css/button.css"/>
<link rel="styleshhet" href="css/weather.css"/>
<title>CapStone ToDo Main</title>
</head>
<body>
<span class="js-weather"></span>
<span class="js-popup" onclick="openPopupWindow()">사이트 차단</span>
<div class="MainContainer">
<div class="js-clock">
<h1>00:00</h1>
</div>
<form class="js-form form">
<input type="text" placeholder="이름을 입력해주세요." required />
</form>
<h4 class="js-grettings grettings"></h4>
<form class="js-toDoForm">
<input type="text" id="inputTodo" name="inputTodo" placeholder="해야할 일을 적어주세요." required autocomplete="off"/>
</form>
<div class="TodoButton">
<button class="AllClearButton" onclick="AllClear()">모두 지우기</button>
<button class="CalendarPopUpButton" onclick="openCalndarPopupWindow()">알림 설정</button>
</div>
<ul class="js-toDoList list">
<text></text>
</ul>
<script src="js/clock.js"></script>
<script src="js/popup.js"></script>
<script src="js/greeting.js"></script>
<script src="js/todo.js"></script>
<script src="js/bg.js"></script>
<script src="js/button.js"></script>
<script src="js/showAlram.js"></script>
<script src="js/weather.js"></script>
<div class="copycontainer">
<a class="copyright" href="#" onclick="copyright()">Team Int.</a>
</div>
</body>
</html>