-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 904 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Super Responsive</title>
</head>
<body>
<label>Red</label>
<input type="range" id = "rangeRed" value = "100" min = "0" max = "255">
<label>Green</label>
<input type="range" id = "rangeGreen" value = "33" min = "0" max = "255">
<label>Blue</label>
<input type="range" id = "rangeBlue" value = "20" min = "0" max = "255">
<button type="button" id = "button">Set background color</button>
<div class = "secondaryColor"><h3>This page shows complementary Colors</h3></div>
<div class = "secondaryColor">This Div gets SECONDARY color</div>
<div class = "primaryColor">This Div gets PRIMARY color</div>
<div class = "secondaryColor">Bottom of the page</div>
<div class = "primaryColor">Even Below</div>
<script type="text/javascript" src = "script.js"></script>
</body>
</html>