Skip to content

Commit 6f1d95b

Browse files
committed
Setup
0 parents  commit 6f1d95b

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const heading = document.querySelector("h1");
2+
console.log(heading);

favicon.ico

14.7 KB
Binary file not shown.

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 http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Objects</title>
8+
<!-- Favicon -->
9+
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
10+
<!-- Stylesheet -->
11+
<link rel="stylesheet" href="./styles.css" />
12+
</head>
13+
<body>
14+
<h1>objects</h1>
15+
<!-- Link to JavaScript -->
16+
<script src="./app.js"></script>
17+
</body>
18+
</html>

styles.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
body {
2+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
3+
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
4+
text-transform: capitalize;
5+
}
6+
7+
h1 {
8+
text-align: center;
9+
letter-spacing: 2px;
10+
}

0 commit comments

Comments
 (0)