-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 3.82 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 3.82 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TodoApp</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,600;0,800;1,100;1,400&family=Lato:ital@0;1&family=Open+Sans:ital,wght@0,600;1,500&family=Oswald:wght@300;400;500;700&family=Prosto+One&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,700&family=Roboto+Mono:ital,wght@1,500&family=Roboto:wght@400;500&display=swap"
rel="stylesheet">
</head>
<body>
<div class="row">
<div class="col-5 mx-auto text-center my-5 py-5 px-4">
<h1 class="fw-bolder text-warning text-center">ToDo App</h1>
<form class="row g-3">
<div class="col-10 mt-5 mx-auto text-center">
<label for="inputPassword2" class="visually-hidden d-inline-block ">Password</label>
<input type="text" class="form-control fw-bolder todo-input" id="input"
placeholder="Enter your Task please "> <!-- todo siehe code.js-->
</div>
<div class="col-2 mt-5 mx-auto text-center">
<button type="submit" class="btn btn-warning mb-3 todo-btn"> <!-- todo siehe code.js-->
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-square-plus"
width="30" height="30" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"
fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z">
</path>
<path d="M9 12l6 0"></path>
<path d="M12 9l0 6"></path>
</svg>
</button>
</div>
</form>
</div>
</div>
<div class="row mt-5">
<div class="col-5 mx-auto my-5 py-5 px-4">
<ul class="list-unstyled todores ">
<!-- um de Task zu lösen und wieder ein li wie unten zu erstellen aber in code.js-->
<!-- <li>
<h4 class=" me-5 fw-bolder d-inline-block">learning Javascript</h4>
<div class="action-div ">
<button type="button" class="btn btn-primary ms-5">
<i class="fa-solid fa-plus"></i>
</button>
<button type="button" class="btn btn-danger">
<i class="fa-solid fa-trash"></i>
</button>
</div>
</li> -->
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script src="code.js"></script>
</body>
</html>