forked from siriokun/css-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex.html
32 lines (29 loc) · 907 Bytes
/
flex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Flex Example</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1 class="logo"><a href="#">CSS Flex</a></h1>
<ul class="nav">
<li><a href="#">Stories</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Create</a></li>
<li><a href="#">Notification</a></li>
<li><a href="#">Profile</a></li>
</ul>
</div>
<div class="content">
<div class="entry">
<h1 class="title">Stories</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugit odit vero harum, iusto quos architecto labore, dolores soluta non inventore velit, vel fuga, provident quisquam exercitationem. Nulla ad, adipisci aperiam.</p>
</div>
</div>
<div class="footer">
<p>This is an example of CSS Flex layout</p>
</div>
</body>
</html>