forked from ntkog/prueba_hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (29 loc) · 789 Bytes
/
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Flexbox Layout</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel='stylesheet prefetch' href='https://cdn.jsdelivr.net/foundation/6.2.0/foundation.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<container>
<header class="main-header">
<h1>Flex Box Layout</h1>
<ul class="main-nav">
<li><a href="#">About Me</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
<div class="content">
<p>This is some content</p>
</div>
<footer>
<p>This is a sticky footer simply using Flex Box</p>
</footer>
</container>
</body>
</html>