Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 17 additions & 19 deletions 02 - Starter Files and Tooling Setup/test-START.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../assets/style.css" />
<title>Starter Files and Tooling Setup!</title>
</head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../assets/style.css">
<title>Starter Files and Tooling Setup!</title>
</head>
<style>
p {
font-size: 50px;
border-bottom: 10px solid var(--yellow);
color: var(--black);
}
</style>

<style>
p {
font-size: 50px;
border-bottom: 10px solid var(--yellow);
color: var(--black);
}
</style>

<body>
<p>Hello!</p>
</body>

</html>
<body>
<p>Let's get our grid on!</p>
</body>
</html>
40 changes: 28 additions & 12 deletions 03 - CSS Grid Fundamentals/css-grid-fundamentals-START.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../assets/style.css" />
<title>CSS Grid Fundamentals!</title>
</head>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../assets/style.css">
<title>CSS Grid Fundamentals!</title>
</head>

<body>

</body>

</html>
<body>
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
<div class="item">6</div>
<div class="item">7</div>
<div class="item">8</div>
<div class="item">9</div>
</div>
<style>
.container {
display: grid;
grid-template-rows: 200px 200px 200px;
grid-template-columns: 300px 300px 300px;
grid-gap: 30px;
}
</style>
</body>
</html>
Loading