Commit 5763d113 authored by Sindre Sorhus's avatar Sindre Sorhus

VanillaJS app: convert to tabs + remove some whitespace

parent 86462783
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>VanillaJS • TodoMVC</title> <title>VanillaJS • TodoMVC</title>
<link rel="stylesheet" href="../../assets/base.css"> <link rel="stylesheet" href="../../assets/base.css">
</head> </head>
<body> <body>
<section id="todoapp">
<section id="todoapp"> <header id="header">
<header id="header"> <h1>Todos</h1>
<h1>Todos</h1> <input id="new-todo" placeholder="What needs to be done?" autofocus>
<input id="new-todo" placeholder="What needs to be done?" autofocus> </header>
</header> <section id="main">
<input id="toggle-all" type="checkbox" >
<section id="main"> <label for="toggle-all">Mark all as complete</label>
<input id="toggle-all" type="checkbox" > <ul id="todo-list"></ul>
<label for="toggle-all">Mark all as complete</label> </section>
<ul id="todo-list"> <footer id="footer">
<span id="todo-count"></span>
</ul> <button id="clear-completed">Clear completed</button>
</section> </footer>
</section>
<footer id="footer"> <footer id="info">
<span id="todo-count"></span> <p>Double-click to edit a todo</p>
<button id="clear-completed">Clear completed</button> <p>Created by <a href="http://twitter.com/ffesseler">Florian Fesseler</a></p>
</footer> <p>Cleanup, edits by <a href="http://github.com/boushley">Aaron Boushley</a></p>
</section> </footer>
<script src="js/app.js"></script>
<footer id="info">
<p>Double-click to edit a todo.</p>
<p>Created by <a href="http://twitter.com/ffesseler">Florian Fesseler</a></p>
<p>Cleanup, edits: <a href="http://github.com/boushley">Aaron Boushley</a>.</p>
</footer>
<!-- scripts here -->
<script src="js/app.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment