-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (47 loc) · 3.19 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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>TAsk PAnda</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id = "preloader"></div>
<h1 id="hhh" class="websiteName"> TAsk PAnda </h1>
<script src="index.js" ></script>
<div class="navbar">
<button class="tabs" onclick="opentab(event , 'left00')">LEFT</button>
<button class ="tabs" onclick="opentab(event , 'MISSED89')">MISSED</button>
<button class="tabs" onclick="opentab(event, 'com')">COMPLETED</button>
<button class="tabs" onclick="opentab(event, 'all')">ALL</button>
</div>
<button class="add_button" onclick="saveData()" ><span class="button__icon"><ion-icon name="add-circle-outline"></ion-icon></span></button>
<input type="text" placeholder="task" id="task00" >
<input type="datetime-local" id="deadline">
<div id="left00" class="content">
<h1>left</h1>
</div>
<div id="MISSED89" class="content">
<h1>MISSED</h1>
</div>
<div id="com" class="content">
<h1>completed task</h1>
</div>
<div id="all" class="content">
<h1>all task</h1>
</div>
<div id="maindiv" class="maindiv1">
</div>
<!-- // ////////////////////////
<iframe width="560" height="315" src="https://www.youtube.com/embed/Yf5d_Zx3AaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><iframe width="560" height="315" src="https://www.youtube.com/embed/Yf5d_Zx3AaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><iframe width="560" height="315" src="https://www.youtube.com/embed/Yf5d_Zx3AaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><iframe width="560" height="315" src="https://www.youtube.com/embed/Yf5d_Zx3AaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><iframe width="560" height="315" src="https://www.youtube.com/embed/Yf5d_Zx3AaI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
// /////////////////////// -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.7/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.7/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.7/firebase-auth-compat.js"></script>
<script src="tabs.js"></script>
</body>
</html>