-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (45 loc) · 1.51 KB
/
index.html
File metadata and controls
52 lines (45 loc) · 1.51 KB
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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Materialize - Grid</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m6 l4 teal lighten-2">
<h1>4</h1>
</div>
<div class="col s12 m6 l8 amber lighten 2">
<h1>5</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col s12 m6 l4 blue lighten-2">
<h1>4</h1>
</div>
<div class="col s12 m6 l4 offset-l4 yellow lighten 2">
<h1>5</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col s12 l4 teal lighten-2">
<h1>4</h1>
</div>
<div class="col s12 m6 l8 amber lighten 2">
<h1>5</h1>
</div>
</div>
</div>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>