-
-
Save machinefriendly/6fe8534926a70f450174 to your computer and use it in GitHub Desktop.
JS Bin// source http://jsbin.com/wiwufopira // todo list css html
This file contains hidden or 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> | |
<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