-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Future Diary</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<br>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script name="viewport" content="width=device-width, initial-scale=1"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="todo-app">
<h2>DAILY NOTES<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQXGrY_oRH_QI78Xi71uG5mvqUd-DGJQLyxbA&usqp=CAU"></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your text">
<div class="btn"><button onclick="addTask()">Add</button></div>
</div>
<div>
<a class="head" href="sex.com">All NOTES</a>
</div><br>
<ul id="list-container">
<!--<li class="checked">Task 1</li><br>
<li>Task 2</li>
<li>Task 3</li>-->
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>