Skip to content

Commit 4072ee0

Browse files
committed
brocode start
1 parent 81ba338 commit 4072ee0

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

bro-code/index.html

Whitespace-only changes.

bro-code/main.js

Whitespace-only changes.

bro-code/style.css

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Background color changer</title>
7+
8+
</head>
9+
<body>
10+
<section>
11+
<h1>Background color changer</h1>
12+
<div class="buttons">
13+
<button class="btn" id="green" style=" color: white; background-color: green;">Green</button>
14+
<button class="btn" id="red" style=" color: white; background-color: red;">Red</button>
15+
<button class="btn" id="yellow" style=" color: black; background-color: yellow;">Yellow</button>
16+
<button class="btn" id="blue" style=" color: white; background-color: blue;">Blue</button>
17+
<button class="btn" id="random" style=" color: white; background-color: grey;">Random</button>
18+
</div>
19+
</section>
20+
<script src="./main.js"></script>
21+
</body>
22+
</html>

projects/background-color-changer/main.js

Whitespace-only changes.

0 commit comments

Comments
 (0)