-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 805 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 805 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color changer</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class = "canvas">
<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="red"></span>
<span class = "button" id="pink"></span>
<h3>
Try clicking on one of the colors above
<span>To change the background color of this page!</span>
</h3>
</div>
<script src="app.js"></script>
</body>
</html>