-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 2.11 KB
/
index.html
File metadata and controls
65 lines (62 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Grid css</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h2>Adding a new position</h2>
<div class="wrapper one">
<div class="a">a</div>
<div class="b">b</div>
<div class="c">c</div>
<div class="d">d</div>
<div class="e">e</div>
<div class="f">f</div>
<div class="g">g</div>
</div>
<br>
<h2>Changing row and columns size</h2>
<div class="wrapper two">
<div class="a">a</div>
<div class="b">b</div>
<div class="c">c</div>
<div class="d">d</div>
<div class="e">e</div>
<div class="f">f</div>
<div class="g">g</div>
<div class="h">h</div>
<div class="i">i</div>
<div class="j">j</div>
</div>
<h2>Grid Area sintax - nested grid</h2>
<div class="wrapper three">
<header>
<h1>Header</h1>
</header>
<article>
<h2>Article Title</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci laborum, ex tempora esse fuga consequuntur dolores excepturi, eaque quis incidunt?</p>
</article>
<aside>
<h3>Aside</h3>
<blockquote>
Text
</blockquote>
</aside>
<section>
<div>Camilo</div>
<div>Colorado</div>
</section>
</div>
<div>
<h2>Links</h2>
<a href="https://rachelandrew.co.uk/css/cheatsheets/grid-fallbacks" target="_blank">rachelandrew</a>
<a href="https://gridbyexample.com/" target="_blank">gridbyexample</a>
<a href="https://static.frontendmasters.com/resources/2017-10-03-responsive-web-design-flexbox-css-grid/Flexbox-and-CSS-Grid-Properties-Cheat-Sheet.pdf" target="_blank">frontendmasters resources</a>
</div>
</body>
</html>