-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="../styles.css" />
<title>JavaScript Background Color Switcher</title>
</head>
<body>
<nav>
</nav>
<div class="canvas">
<!-- <a
style="
background-color: #fff;
padding: 10px 30px;
border-radius: 8px;
color: #212121;
text-decoration: none;
border: 2px solid #212121;
"
href="../index.html"
>Back to Home Page</a
> -->
<h1>Color Scheme Switcher</h1>
<span class="button" id="grey"></span>
<span class="button" id="white"></span>
<span class="button" id="blue"></span>
<span class="button" id="yellow"></span>
<span class="button" id="pink"></span>
<h2>
Try clicking on one of the colors above
<span>to change the background color of this page!</span>
</h2>
</div>
<script src="colchange.js"></script>
</body>
</html>