-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox-in-practice.html
More file actions
74 lines (74 loc) · 2.34 KB
/
flexbox-in-practice.html
File metadata and controls
74 lines (74 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>flexbox in practice</title>
<link rel="stylesheet" href="css/flexbox-in-practice.css">
</head>
<body>
<header>
<nav>
<ul>
<li id="branding">
<a href="#">
<h3>Flexbox Systems</h3>
</a>
</li>
<li>
<a href="#">
<p>About Us</p>
</a>
</li>
<li>
<a href="#">
<p>Services</p>
</a>
</li>
<li>
<a href="#">
<p>Vision</p>
</a>
</li>
</ul>
</nav>
</header>
<main id="container">
<section id="main-content">
<div class="card">
<h2>John Doe</h2>
<img src="img/placeHolder48x48.svg" alt="placeholder profile image">
<h4>CEO/COO</h4>
</div>
</section>
</main>
<footer>
<nav>
<ul>
<li>Lorem</li>
<li>impum</li>
<li>Sit</li>
<li>Dolar</li>
</ul>
<ul>
<li>Anum</li>
<li>Plurbis</li>
<li>Plumbis</li>
<li>Pupa</li>
<li>Terry</li>
<li>RedGuy</li>
</ul>
<p>
A major structure of the foot; a critical design flaw, and cause for recall, of the Achilles model of Greek
hero; and the primary reason why action combat doesn’t work in MMOs. After that bit of shenanigans, Cool
and I looked at buying another vendor set for my Shadow spec but I was having a lot of crashing issues as
soon as I ported from Org to the Valley. First, we notice there are no petite Republic chicks. GW2 will
never satisfy you for the rest of your life; you have to move on to other games to rid your soul of the
demons.
</p>
</nav>
<article id="copyright">
<h3>Copyright © Flexbox Systems Unlimited, LLC.</h3>
</article>
</footer>
</body>
</html>