-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathgrid3.html
More file actions
19 lines (19 loc) · 615 Bytes
/
grid3.html
File metadata and controls
19 lines (19 loc) · 615 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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="grid3.css">
<title>Css Grid 3</title>
</head>
<body>
<h1>Css Grid 3 (Spanning)</h1>
<h3>Refer the entire video <a href="https://youtu.be/jV8B24rSN5o">here</a></h3>
<div class="container">
<div class="box box1">Box-1</div>
<div class="box box2">Box-2</div>
<div class="box box3">Box-3</div>
<div class="box box4">Box-4</div>
</div>
</body>
</html>