-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
29 lines (28 loc) · 882 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Polling App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<h1>Vote for Your Favorite Programming Language</h1>
<div class="poll-options">
<button class="poll-option" data-vote="Ruby">Ruby</button>
<button class="poll-option" data-vote="Python">Python</button>
<button class="poll-option" data-vote="Java">Java</button>
<button class="poll-option" data-vote="Javascript">Javascript</button>
</div>
<div class="poll-results">
<h2>Results</h2>
<ul id="results-list">
<!-- Poll results will be displayed here -->
</ul>
</div>
</div>
<!-- JavaScript File -->
<script src="script.js"></script>
</body>
</html>