-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColor.html
More file actions
30 lines (30 loc) · 795 Bytes
/
Copy pathColor.html
File metadata and controls
30 lines (30 loc) · 795 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color</title>
<link rel="stylesheet" href="Color.css">
</head>
<body>
<div class="container">
<div class="pallete">
<div class="color">
<span>#10002b</span>
</div>
<div class="color">
<span>#240046</span>
</div>
<div class="color">
<span>#3c096c</span>
</div>
<div class="color">
<span>#5a189a</span>
</div>
<div class="color">
<span>#7b2cbf</span>
</div>
</div>
</div>
</body>
</html>