-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFlexbox.html
More file actions
32 lines (28 loc) · 730 Bytes
/
Flexbox.html
File metadata and controls
32 lines (28 loc) · 730 Bytes
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox</title>
<link rel="stylesheet" href="styleflex.css">
</head>
<body>
<header>
<nav>
<ul class="flex-container">
<li class="flex-item">Home</li>
<li class="flex-item">About</li>
<li class="flex-item">Services</li>
<li class="flex-item">Contact</li>
</ul>
</nav>
<h1>he is great</h1>
</header>
<div>
<b>he is a boy</b>
<p>she is a girl</p>
</div>
<h1>he is greater</h1>
</body>
<script src="index.js"></script>
</html>