-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathgrid1.html
More file actions
27 lines (27 loc) · 825 Bytes
/
grid1.html
File metadata and controls
27 lines (27 loc) · 825 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="grid1.css">
<title>Learning Grid</title>
</head>
<body>
<h1>Learning Grid</h1>
<h3>Refer the doc
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/grid">here</a> or watch the video <a href="#">1</a>,
<a href="#">2</a>
</h3>
<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</body>
</html>