-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
46 lines (39 loc) · 1.58 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<link rel="stylesheet" href="style.css">
<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css'><link rel="stylesheet" href="./style.css">
</head>
<body>
<section class="form-section">
<div class="container bg-grey">
<h1 style="padding: 20px;">To Do App</h1>
<div style="display: flex; justify-content: center;align-items: center; gap: 20px;">
<div class="user-box">
<input type="text" id="name1" name="" required="">
<label>Wpisz tutaj zadanie</label>
<input type="date" class ="data">
</div>
<button id="create-button"></button>
</div>
<div class="table-box">
<table id="table-stats">
<tr class="table-item">
<th>№</th>
<th id="th2">Rzecz do zrobienia</th>
<th id="th3">Status</th>
<th id="th4">Data</th>
<th id="th5">Działania</th>
</tr>
</table>
</div>
</div>
</section>
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js'></script>
<script src="./script.js"></script>
</body>
</html>