Skip to content

Instantly share code, notes, and snippets.

@machinefriendly
Forked from anonymous/index.html
Last active February 17, 2016 08:44
Show Gist options
  • Save machinefriendly/6fe8534926a70f450174 to your computer and use it in GitHub Desktop.
Save machinefriendly/6fe8534926a70f450174 to your computer and use it in GitHub Desktop.
JS Bin// source http://jsbin.com/wiwufopira // todo list css html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<style>
#tasks{
padding: 0px;
list-style-type:none}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<form>
<fieldset>
<legend>Tasks</legend>
Add a new task:</br>
<input type="text" name="task-title" value=""></br>
<input type="radio" name="task-type" value="message" checked>message
<input type="radio" name="task-type" value="todo">todo</br>
<input type="submit" value="Add">
<ul id="tasks">
<li><input type="checkbox" checked value="a"><span>a</span></li>
<li><input type="checkbox" value="b"><span>b</span></li>
</ul>
</fieldset>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment