/ˈtoʊdoʊ/ — A simple, local, and customizable list
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit

Amazingca 38193875

+16
+12
index.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <title>todo</title> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 + <link rel="stylesheet" type="text/css" href="./style.css"> 7 + <script src="./script.js"></script> 8 + </head> 9 + <body> 10 + <h1>Hello, World!</h1> 11 + </body> 12 + </html>
+1
script.js
··· 1 + window.alert("Welcome!");
+3
style.css
··· 1 + body { 2 + background-color: gray; 3 + }