Skip to content

Commit 85b5452

Browse files
03 - CSS Grid Fundamentals Start Files
1 parent 30e9632 commit 85b5452

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" href="../assets/style.css">
8+
<title>CSS Grid Fundamentals!</title>
9+
</head>
10+
11+
<body>
12+
<div class="container">
13+
<div class="item">1</div>
14+
<div class="item">2</div>
15+
<div class="item">3</div>
16+
<div class="item">4</div>
17+
<div class="item">5</div>
18+
<div class="item">6</div>
19+
<div class="item">7</div>
20+
<div class="item">8</div>
21+
<div class="item">9</div>
22+
<div class="item">10</div>
23+
</div>
24+
<style>
25+
.container {
26+
display: grid;
27+
grid-template-columns: 200px 500px;
28+
grid-template-rows: 200px 100px 400px;
29+
grid-gap: 20px;
30+
}
31+
</style>
32+
</body>
33+
34+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" href="../assets/style.css">
8+
<title>CSS Grid Fundamentals!</title>
9+
</head>
10+
11+
<body>
12+
13+
</body>
14+
15+
</html>

readme.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
![](https://res.cloudinary.com/wesbos/image/upload/v1515524452/GRID-social-share_wlfzk3.png)
22

3+
# Personal notes
4+
To start, in terminal navigate to the project root folder and enter 'npm i' to install dependencies (node needs to be installed on your machine).
5+
6+
Once installed, enter 'npm start' and then navigate to the desired folder in your browser
7+
8+
39
# CSS Grid Video Course
410

511
Hey! These are the starter files and finished solutions. Grab the full course over at [CSSGrid.io](https://CSSGrid.io).

0 commit comments

Comments
 (0)