diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/JS_Template.iml b/.idea/JS_Template.iml
new file mode 100644
index 0000000..3ad4ebd
--- /dev/null
+++ b/.idea/JS_Template.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/easycode.ignore b/.idea/easycode.ignore
new file mode 100644
index 0000000..04b63e2
--- /dev/null
+++ b/.idea/easycode.ignore
@@ -0,0 +1,13 @@
+.idea
+.vscode
+node_modules/
+dist/
+vendor/
+cache/
+.*/
+*.min.*
+*.test.*
+*.spec.*
+*.bundle.*
+*.bundle-min.*
+*.log
diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml
new file mode 100644
index 0000000..3565144
--- /dev/null
+++ b/.idea/jsLibraryMappings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..f03c948
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..8811d7b
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/polls.json b/data/polls.json
new file mode 100644
index 0000000..0547f85
--- /dev/null
+++ b/data/polls.json
@@ -0,0 +1,98 @@
+[
+ {
+ "id": "poll_1",
+ "question": "What is your favorite programming language?",
+ "category": "technology",
+ "options": [
+ { "text": "JavaScript", "votes": 67 },
+ { "text": "Python", "votes": 52 },
+ { "text": "Java", "votes": 23 },
+ { "text": "C++", "votes": 8 }
+ ],
+ "totalVotes": 150
+ },
+ {
+ "id": "poll_2",
+ "question": "Which social media platform do you use the most?",
+ "category": "lifestyle",
+ "options": [
+ { "text": "Facebook", "votes": 98 },
+ { "text": "Instagram", "votes": 84 },
+ { "text": "Twitter", "votes": 70 },
+ { "text": "LinkedIn", "votes": 28 }
+ ],
+ "totalVotes": 280
+ },
+ {
+ "id": "poll_3",
+ "question": "What is your favorite color?",
+ "category": "lifestyle",
+ "options": [
+ { "text": "Blue", "votes": 38 },
+ { "text": "Green", "votes": 29 },
+ { "text": "Red", "votes": 19 },
+ { "text": "Yellow", "votes": 9 }
+ ],
+ "totalVotes": 95
+ },
+ {
+ "id": "poll_4",
+ "question": "Which business strategy is most important for startups?",
+ "category": "business",
+ "options": [
+ { "text": "Product-Market Fit", "votes": 145 },
+ { "text": "Marketing & Sales", "votes": 87 },
+ { "text": "Team Building", "votes": 63 },
+ { "text": "Funding", "votes": 41 }
+ ],
+ "totalVotes": 336
+ },
+ {
+ "id": "poll_5",
+ "question": "What's your preferred streaming service?",
+ "category": "entertainment",
+ "options": [
+ { "text": "Netflix", "votes": 156 },
+ { "text": "YouTube", "votes": 134 },
+ { "text": "Disney+", "votes": 78 },
+ { "text": "Amazon Prime", "votes": 92 }
+ ],
+ "totalVotes": 460
+ },
+ {
+ "id": "poll_6",
+ "question": "Which AI tool do you use most frequently?",
+ "category": "technology",
+ "options": [
+ { "text": "ChatGPT", "votes": 189 },
+ { "text": "Claude", "votes": 67 },
+ { "text": "Gemini", "votes": 43 },
+ { "text": "Copilot", "votes": 28 }
+ ],
+ "totalVotes": 327
+ },
+ {
+ "id": "poll_7",
+ "question": "What's your favorite movie genre?",
+ "category": "entertainment",
+ "options": [
+ { "text": "Action", "votes": 112 },
+ { "text": "Comedy", "votes": 98 },
+ { "text": "Drama", "votes": 76 },
+ { "text": "Sci-Fi", "votes": 54 }
+ ],
+ "totalVotes": 340
+ },
+ {
+ "id": "poll_8",
+ "question": "Which remote work tool is most essential?",
+ "category": "business",
+ "options": [
+ { "text": "Zoom", "votes": 134 },
+ { "text": "Slack", "votes": 89 },
+ { "text": "Microsoft Teams", "votes": 76 },
+ { "text": "Discord", "votes": 43 }
+ ],
+ "totalVotes": 342
+ }
+]
\ No newline at end of file
diff --git a/index.html b/index.html
index 09c6dc0..22cceda 100644
--- a/index.html
+++ b/index.html
@@ -3,11 +3,77 @@
- Simple HTML Page
-
-
+ Polling Website
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+