Add basics and create new projects name

This commit is contained in:
Synobbol
2023-08-11 13:14:58 +02:00
commit 5f55ed66bf
3 changed files with 102 additions and 0 deletions

30
index.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToDoListPlus</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Todo List Plus</h1>
</header>
<main>
<h2>Projects</h2>
<div>
<ul class="projectList">
</ul>
</div>
<button class="show">Add project</button>
<div class="form" hidden>
<input class="nameP" type="text" name="nameP" placeholder="name of your project">
<button id="addP">+</button>
</div>
</main>
<footer></footer>
<script src="main.js"></script>
</body>
</html>