Skip to content

Instantly share code, notes, and snippets.

@erralb
Created May 2, 2024 13:45
Show Gist options
  • Save erralb/4b782b7f2b42ebbad47974212eeb70b7 to your computer and use it in GitHub Desktop.
Save erralb/4b782b7f2b42ebbad47974212eeb70b7 to your computer and use it in GitHub Desktop.
index.html pour V8 Inputs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<style>
ul {
min-width: 400px;
display: inline-flex;
flex-direction: column;
list-style-type: none;
padding: 20px;
border-bottom: 4px solid lightgray;
}
li {
padding: 10px;
border: 1px solid #ccc;
margin: 5px 0;
}
</style>
</head>
<body>
<h1>Todo Lists</h1>
<div>
<label for="listName">
Nom de la liste :
<input type="text" id="list-name" value="My Todo" placeholder="My todo">
</label>
<button onclick="createList()">Créer</button>
</div>
<div id="lists-container"></div>
<script defer src="v8-inputs.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment