Skip to content

Instantly share code, notes, and snippets.

@gabrielbissey
Created February 22, 2018 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielbissey/a5181d8bc8983723a8dcd73325a8c865 to your computer and use it in GitHub Desktop.
Save gabrielbissey/a5181d8bc8983723a8dcd73325a8c865 to your computer and use it in GitHub Desktop.
Simple HTML todo list frame
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8"/>
<title>todo-list</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body class="body">
<h1 id="h1">Todo list</h1>
<p><input type='text' id='inItemText'/></p>
<ul id='addList'></ul>
<script src='main.js'></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment