-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (81 loc) · 4.03 KB
/
index.html
File metadata and controls
95 lines (81 loc) · 4.03 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en" class=" temp theme" oncontextmenu="" onkeydown="" onmousedown="">
<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>Focus Pad</title>
<script src="https://kit.fontawesome.com/e62294c5aa.js" crossorigin="anonymous"></script>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🎯</text></svg>">
<!-- <link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest"> -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class=" optr "> <!-- color -->
</div>
<div class="container "> <!-- blend -->
<div class="title">
<!-- <h1>Focus pad</h1> -->
<span id="logo">
<img src="./assets/fomcus.png" alt="Focus pad">
</span>
<div class="theme-toggle moon">
<i class="fa-solid fa-sun"></i>
<i class="fa-solid fa-moon"></i>
</div>
</div>
<div id="name-section">
<span>Hi</span>
<input type="text" id="name" placeholder="Your Name" autocomplete="off">
</div>
<form class="task-input" autocomplete="off">
<div class="input-box">
<input id="input" type="text">
<!-- placeholder="Todays Task" -->
<button id="btn" type="submit"><i class="fa-solid fa-heart-circle-plus"
style="padding: 0 0 0.5rem .5rem;"></i></i></button>
</div>
<input id="input-desc" type="text" placeholder="description">
</form>
<!-- task section -->
<div class="task-container">
<!-- -->
<!-- <div class="tasks ">
<input class="check" type="checkbox">
<input type="text" name="task" class="task" readonly="readonly">
<span class="edit"><i class="fa-regular fa-pen-to-square"></i></span>
<span class="delete"><i class="fa-solid fa-trash-can"></i></span>
<input type="text" name="desc" class="desc">
</div>
<div class="tasks">
<input class="check" type="checkbox">
<input type="text" name="task" class="task">
<span class="edit"><i class="fa-regular fa-pen-to-square"></i></span>
<span class="delete"><i class="fa-solid fa-trash-can"></i></span>
<input type="text" name="desc" class="desc">
</div>
<div class="tasks">
<input class="check" type="checkbox">
<input type="text" name="task" class="task">
<span class="edit"><i class="fa-regular fa-pen-to-square"></i></span>
<span class="delete"><i class="fa-solid fa-trash-can"></i></span>
<input type="text" name="desc" class="desc">
</div>
<div class="tasks">
<input class="check" type="checkbox">
<input type="text" name="task" class="task">
<span onclick="editFunc(this.id)" class="edit"><i class="fa-regular fa-pen-to-square"></i></span>
<span class="delete"><i class="fa-solid fa-trash-can"></i></span>
<input type="text" name="desc" class="desc">
</div> -->
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>