diff --git a/web/newWebsite/graphs.html b/web/newWebsite/graphs.html
index 0629172..e6c7ab4 100644
--- a/web/newWebsite/graphs.html
+++ b/web/newWebsite/graphs.html
@@ -23,6 +23,8 @@
Settings
+
+ Questions
diff --git a/web/newWebsite/index.html b/web/newWebsite/index.html
index dfe847a..97dcb44 100644
--- a/web/newWebsite/index.html
+++ b/web/newWebsite/index.html
@@ -26,6 +26,8 @@
Settings
+
+ Questions
diff --git a/web/newWebsite/questions-dashboard.html b/web/newWebsite/questions-dashboard.html
new file mode 100644
index 0000000..9cd18e8
--- /dev/null
+++ b/web/newWebsite/questions-dashboard.html
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+ Graphs
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web/newWebsite/questions-main.js b/web/newWebsite/questions-main.js
new file mode 100644
index 0000000..e69de29
diff --git a/web/newWebsite/settings.html b/web/newWebsite/settings.html
index 6c33bd2..383842a 100644
--- a/web/newWebsite/settings.html
+++ b/web/newWebsite/settings.html
@@ -22,6 +22,8 @@
Settings
+
+ Questions
diff --git a/web/newWebsite/styles/questions-dashboard-styles.css b/web/newWebsite/styles/questions-dashboard-styles.css
new file mode 100644
index 0000000..966d901
--- /dev/null
+++ b/web/newWebsite/styles/questions-dashboard-styles.css
@@ -0,0 +1,42 @@
+* {
+ box-sizing: border-box;
+ font-family: "Roboto", sans-serif;
+ }
+
+ body {
+ padding-top: 5vw;
+ display: flex;
+ background-color: #afafaf;
+ margin: 0;
+ }
+
+ .navbar {
+ background-color: #333;
+ height: 60px;
+ display: flex;
+ align-items: center;
+ padding: 0 20px;
+ position: fixed; /* Fix the navbar at the top of the page */
+ top: 0; /* Position it at the very top */
+ width: 100%; /* Make it span the full width of the page */
+ z-index: 1000; /* Make sure it's above all other elements */
+ }
+
+ .navbar-nav {
+ list-style: none;
+ display: flex;
+ align-items: center;
+ justify-content: center; /* Center the links horizontally */
+ height: 100%;
+ width: 100%; /* Make it span the full width of the navbar */
+ }
+
+ .nav-item {
+ margin-right: 20px;
+ }
+
+ .nav-link {
+ color: #fff;
+ text-decoration: none;
+ font-size: 18px;
+ }
\ No newline at end of file