-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (83 loc) · 4.43 KB
/
index.html
File metadata and controls
103 lines (83 loc) · 4.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Random Color Generator</title>
</head>
<body>
<main>
<section id="color-history">
<h1>Latest colors</h1>
<div id="list-colors">
</div>
</section>
<section id="maincontenant">
<div class="active" id="any-color-generator" >
<h1>Any Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="pastel-color-generator" >
<h1>Pastel Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="bright-color-generator" >
<h1>Bright Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="dark-color-generator" >
<h1>Dark Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="anygradient-color-generator" >
<h1>Any Gradient Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="pastelgradient-color-generator" >
<h1>Pastel Gradient Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="brightgradient-color-generator" >
<h1>Bright Gradient Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
<div class="inactive" id="darkgradient-color-generator" >
<h1>Dark Gradient Color Generator</h1>
<div class="colors"></div>
<h2 class="colors-hex" onclick="copiedConfirm(this)"></h2>
<button class="btncolors" onclick="generateColor()">GENERATE COLOR</button>
</div>
</section>
<section id="select-typecolor">
<h1>Select color generator</h1>
<div id="list-generators">
<button id="btn-any-color-generator" class="btncolors">Any Color Generator</button>
<button id="btn-pastel-color-generator" class="btncolors">Pastel Color Generator</button>
<button id="btn-bright-color-generator" class="btncolors">Bright Color Generator</button>
<button id="btn-dark-color-generator" class="btncolors">Dark Color Generator</button>
<button id="btn-anygradient-color-generator" class="btncolors">Any Gradient Generator</button>
<button id="btn-pastelgradient-color-generator" class="btncolors">Pastel Gradient Generator</button>
<button id="btn-brightgradient-color-generator" class="btncolors">Bright Gradient Generator</button>
<button id="btn-darkgradient-color-generator" class="btncolors">Dark Gradient Generator</button>
</div>
</section>
</main>
<script src="index.js"></script>
</body>
</html>