-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 918 Bytes
/
Copy pathindex.html
File metadata and controls
41 lines (37 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<title>CSS Grid</title>
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<nav class="header">
<h1>Matt's web page</h1>
<a href="#">About</a>
<a href="#">Links</a>
</nav>
<div class="sidebar">Hello!</div>
<div class="content">
<ol>
<li>Welcome to grid</li>
<li>Rows and columns</li>
<li>Grid gap (inc row and col)</li>
<li>Fractional units</li>
<li>Aligning and justification</li>
<li>Grid areas</li>
<li>Sub grids</li>
</ol>
</div>
<div class="content">
<a href="#">https://cssgridgarden.com/</a>
</div>
<div class="boxes">
<div>Box</div>
<div>Box</div>
<div>Box</div>
<div>Box</div>
<div>Box</div>
</div>
</div>
</body>
</html>