-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
33 lines (31 loc) · 931 Bytes
/
code.html
File metadata and controls
33 lines (31 loc) · 931 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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css"/>
<title>Background Color Changer</title>
<style>
body {
background-color: #962e2a;
padding: 20px;
text-align: center;
}
.color-button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>My Page</h1>
<button class="color-button" id="button1" style="background-color: #d4b8b1;">Sand</button>
<button class="color-button" id="button2" style="background-color: #866c69;">Umber</button>
<button class="color-button" id="button3" style="background-color: #cd8c8c;">Blush</button>
<button class="color-button" id="button4" style="background-color: #53331f;">Espresso</button>
<button class="color-button" id="undo-button">Undo</button>
<script src="script.js"></script>
</body>
</html>