Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
BenedictItua authored Feb 20, 2024
0 parents commit 3202b41
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions index2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<title>Assignment 1 | COMP1073 Client-Side JavaScript</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css">
</head>

<body>
<h1>See-N-Say Storymaker</h1>
<p id="studentId"></p>
<section>
<!-- Section with all the buttons for the user to build their story -->
<h2>Create Your Story</h2>
<button id="noun1">Noun 1</button>
<p id="choosenNoun1"></p>
<button id="verb">Verb</button>
<p id="choosenVerb"></p>
<button id="adjective">Adjective</button>
<p id="choosenAdjective"></p>
<button id="noun2">Noun 2</button>
<p id="choosenNoun2"></p>
<button id="setting">Setting</button>
<p id="choosenSetting"></p>
</section>
<section>
<!-- Section with playback controls to see or hear the story -->
<h2>See Your Story</h2>
<button id="playback">Show Story</button>
<button id="random">Random Story</button>
<!-- Empty paragraph to display the story -->
<p id="story"></p>
</section>
<script src="js/storymaker.js"></script>
</body>

</html>

0 comments on commit 3202b41

Please sign in to comment.