-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPart5.html
More file actions
21 lines (21 loc) · 750 Bytes
/
Part5.html
File metadata and controls
21 lines (21 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Part 5</title>
<link rel="stylesheet" href="Part5.css">
</head>
<body>
<h1>Flexbox Playground</h1>
<div id="Container">
<div style="background-color: #9408d3;">Voilet</div>
<div style="background-color: #4b0082;">indigo</div>
<div id="Blu" style="background-color: #0000ff;">Blue</div>
<div style="background-color: #00ff00;">Green</div>
<div style="background-color: #ffff00;">Yellow</div>
<div id="Org" style="background-color: #ff7f00;">Orange</div>
<div style="background-color: #ff0000;">Red</div>
</div>
</body>
</html>