-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Closures</title>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div class="section-center">
<h2>Choose a color to vote for below:</h2>
<div class="color-container">
<button id="lightgreen-btn" class="color-btn">Green</button>
<button id="lightblue-btn" class="color-btn">Blue</button>
<button id="lightpink-btn" class="color-btn">Pink</button>
</div>
<div class="vote-container">
<button id="vote-btn">Vote Here</button>
</div>
<div class="votes">
<p id="vote-display">Current votes for <span id="color-name">color name</span>: <span id="vote-count">0</span> </p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>