forked from siriokun/css-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Snippets</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1 class="logo"><a href="#">CSS Snippets</a></h1>
<ul class="nav">
<li><a href="#flex">Flex</a></li>
<li><a href="#viewport">Viewport</a></li>
</ul>
</div>
<div class="content">
<div class="entry" id="flex">
<h1 class="title">Flex</h1>
<ul>
<li><a href="flex.html">Menu</a></li>
<li><a href="flex-stack.html">Stack Heading</a></li>
<li><a href="flex-center.html">Vertical Center Text</a> (<a href="layout-center-vertical.html">without flex</a>)</li>
</ul>
<p>Resource : <a href="https://developer.mozilla.org/en/docs/Web/CSS/flex">https://developer.mozilla.org/en/docs/Web/CSS/flex</a></p>
</div>
<div class="entry" id="viewport">
<h1 class="title">Viewport</h1>
<ul>
<li><a href="background-gradient.html">Background Gradient</a></li>
<li><a href="background-solid.html">Background Solid</a></li>
</ul>
<p>Resource : <a href="https://dev.opera.com/articles/css-viewport-units/">https://dev.opera.com/articles/css-viewport-units/</a></p>
</div>
</div>
<div class="footer">
<p><em>Feel free to learn. Clone, fork, distribute, share the knowledge and invent new things.</em></p>
</div>
</body>
</html>