summaryrefslogtreecommitdiff
path: root/wk8/pset/trivia/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'wk8/pset/trivia/index.html')
-rw-r--r--wk8/pset/trivia/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/wk8/pset/trivia/index.html b/wk8/pset/trivia/index.html
new file mode 100644
index 0000000..3555b91
--- /dev/null
+++ b/wk8/pset/trivia/index.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+
+<html lang="en">
+ <head>
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
+ <link href="styles.css" rel="stylesheet">
+ <title>Trivia!</title>
+ <script>
+ // TODO: Add code to check answers to questions
+ </script>
+ </head>
+ <body>
+ <div class="header">
+ <h1>Trivia!</h1>
+ </div>
+
+ <div class="container">
+ <div class="section">
+ <h2>Part 1: Multiple Choice </h2>
+ <hr>
+ <!-- TODO: Add multiple choice question here -->
+ </div>
+
+ <div class="section">
+ <h2>Part 2: Free Response</h2>
+ <hr>
+ <!-- TODO: Add free response question here -->
+ </div>
+ </div>
+ </body>
+</html>