-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 891 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<button id="rgb(0, 121, 191)" class="blue">blue</button>
<button id="rgb(210, 144, 52)" class="yellow">yellow</button>
<button id="rgb(81, 152, 57)" class="green">green</button>
<button id="rgb(176, 70, 50)" class="red">red</button>
<button id="rgb(137, 96, 158)" class="purple">purple</button>
<button id="rgb(205, 90, 145)" class="pink">pink</button>
<button id="rgb(75, 191, 107)" class="lightgreen">light green</button>
<button id="rgb(0, 174, 204)" class="lightblue">light blue</button>
<button id="rgb(131, 140, 145)" class="gray">gray</button>
<button id="#ebebeb" class="reset">reset</button>
<script src="./index.js"></script>
</body>
</html>