Add basics and create new projects name
This commit is contained in:
30
index.html
Normal file
30
index.html
Normal 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>
|
Reference in New Issue
Block a user