We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 10078f6Copy full SHA for 10078f6
index.html
@@ -0,0 +1,18 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ToDo App</title>
7
+
8
+ <!-- External CSS -->
9
+ <link rel="stylesheet" href="./style.css">
10
+</head>
11
+<body>
12
13
+ <h1>ToDo App</h1>
14
15
+ <!-- Javascript -->
16
+ <script src="./script.js" defer></script>
17
+</body>
18
+</html>
script.js
@@ -0,0 +1 @@
+// ToDo App Logic
style.css
@@ -0,0 +1,11 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ /* border: 1px solid red; */
+}
+body {
+ display: grid;
+ place-items: center;
+ font-family: 'Trebuchet MS', Arial, sans-serif;
0 commit comments