32 lines
818 B
HTML
32 lines
818 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Color Flipper</title>
|
|
<style>
|
|
#green {
|
|
background-color: green;
|
|
}
|
|
#red {
|
|
background-color: red;
|
|
}
|
|
#blue {
|
|
background-color: blue;
|
|
}
|
|
button {
|
|
border-radius: 5px;
|
|
width: 100px;
|
|
margin: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Color Flipper</h3>
|
|
<script src="a.js"></script>
|
|
<button id="green" onclick=setColor('green')>green</button>
|
|
<button id="red"onclick=setColor('red')> red</button>
|
|
<button id="blue"onclick=setColor('blue')>blue</button>
|
|
<button onclick=randomColor()>random</button>
|
|
</body>
|
|
</html> |