-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (37 loc) · 1.2 KB
/
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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colour Generator</title>
<!-- Styles Sheet -->
<link rel="stylesheet" href="css/styles.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="colorPalette">
<div class="colors">
<div class="color random">
<img src="random.jpg" alt="rainbow">
</div>
<div class="color white"></div>
<div class="color red"></div>
<div class="color yellow"></div>
<div class="color green"></div>
<div class="color blue"></div>
<div class="color orange"></div>
<div class="color purple"></div>
<div class="color black"></div>
</div>
</div>
<div class="colorPicker">
<div class="hexCode">Colour : #FFFF00</div>
<div class="clickMe">Click ME</div>
</div>
<div class="colorName">
<h1>Yellow</h1>
</div>
<script src="app.js"></script>
</body>
</html>