-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 1.98 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css Grid Layouts | #usetheplatform</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<span class="huge-title">Css Grid Layouts</span>
<p>A collection of yesterday's complex layouts built with ease using modern css features</p>
</header>
<main>
<div class="card">
<h2>Layouts</h2>
<p>Here are some examples of how easy it is to build something great without pain:</p>
<ul>
<li>
<a href="./layouts/1-centered/" target="_blank">
<span class="card-title">Centered Layout</span>
<p>A simple way to centralize content horizontally and vertically</p>
</a>
</li>
<li>
<a href="./layouts/2-sidebar/" target="_blank">
<span class="card-title">Sidebar Layout</span>
<p>A simple two columns layout: Sidebar and Main Content</p>
</a>
</li>
<li>
<a href="./layouts/3-header-main-footer/" target="_blank">
<span class="card-title">Header Main Footer Layout</span>
<p>One column layout with resizable Main area</p>
</a>
</li>
<li>
<a href="./layouts/4-holy-grail/" target="_blank">
<span class="card-title">Holy Grail Layout</span>
<p>Very common layout, with header, footer and three columns in main area</p>
</a>
</li>
<li>
<a href="./layouts/5-complex/" target="_blank">
<span class="card-title">Complex Layout</span>
<p>This sample demonstrates more advanced usage of css grid layout</p>
</a>
</li>
</ul>
</div>
</main>
<footer>
<a href="https://github.com/JoaoLucasGtr/css-grid-layouts">View on Github</a>
<a href="https://github.com/topics/usetheplatform">#usetheplatform</a>
</footer>
</body>
</html>