machinefriendly
2/17/2016 - 8:43 AM

JS Bin// source http://jsbin.com/wiwufopira // todo list css html

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>