Skip to content

Commit 392f471

Browse files
committed
feat: day 0
1 parent 6158625 commit 392f471

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

000-boilerplate/favicon.ico

15 KB
Binary file not shown.

000-boilerplate/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
<title>My Project</title>
1414
</head>
1515
<body>
16-
<h1>My Project</h1>
16+
<!-- Replace <h1>My Project</h1> with a styled <div> for quick visual testing. -->
17+
<!-- <h1>My Project</h1> -->
18+
<div></div>
1719
<script src="script.js"></script>
1820
</body>
1921
</html>

000-boilerplate/style.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
1+
/* Replace Roboto with a font you like. */
2+
@import url("https://fonts.googleapis.com/css2?family=Newspaper:wght@400;700&display=swap");
23

34
* {
45
box-sizing: border-box;
56
}
67

78
body {
8-
font-family: "Roboto", sans-serif;
9+
font-family: "Newspaper", sans-serif;
910
display: flex;
1011
flex-direction: column;
1112
align-items: center;
@@ -14,3 +15,9 @@ body {
1415
overflow: hidden;
1516
margin: 0;
1617
}
18+
19+
div {
20+
background-color: blue;
21+
width: 200px;
22+
height: 200px;
23+
}

0 commit comments

Comments
 (0)