-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3202b41
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |