Advertisement
dronkowitz

Creating Website

Jan 13th, 2023
750
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name = "viewport" content= "width = device-width">
  6.         <title>ToDo List</title>
  7.         <link href = "style.css" rel = "stylesheet" type = "text/css" />
  8.         <script src="script.js"></script>
  9.     </head>
  10.     <body>
  11.         <h1>ToDo List</h1>
  12.         <input id = "input_field" type = "text">
  13.         <button id= "button">Add</button>
  14.         <ul id="todolist">
  15.        
  16.         </ul>
  17.         </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement