diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 00:04:23 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 00:04:23 +0000 |
commit | c228886f0695209452524ba3bdffd7497bfdc44e (patch) | |
tree | b98c961681b7a7429e52d20ea37727774a3db73e /wk8/pset/trivia/index.html | |
parent | 8e8dc9dccfac082dc890ac21446bef07bbbbcfc4 (diff) |
Thu, Jul 4, 2024, 5:04 PM -07:00
Diffstat (limited to 'wk8/pset/trivia/index.html')
-rw-r--r-- | wk8/pset/trivia/index.html | 31 |
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> |