Skip to content

Commit 10078f6

Browse files
committed
Initial commit
0 parents  commit 10078f6

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// ToDo App Logic

style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
/* border: 1px solid red; */
6+
}
7+
body {
8+
display: grid;
9+
place-items: center;
10+
font-family: 'Trebuchet MS', Arial, sans-serif;
11+
}

0 commit comments

Comments
 (0)