Created
February 22, 2018 22:22
-
-
Save gabrielbissey/a5181d8bc8983723a8dcd73325a8c865 to your computer and use it in GitHub Desktop.
Simple HTML todo list frame
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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