Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2021_123
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2021_123
2021_123
Commits
1d0ee318
Commit
1d0ee318
authored
Sep 11, 2021
by
A.M.R.Y Bandara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1st html
parent
138ee217
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
index.html
index.html
+62
-0
No files found.
index.html
0 → 100644
View file @
1d0ee318
<!DOCTYPE html>
<html>
<head
lang=
"en"
>
<meta
charset=
"utf-8"
>
<title>
Multiplication Game
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<!--css-->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"style.css"
/>
</head>
<body>
<div
id=
"container"
>
<!-- title-->
<h1
class=
"gametitle"
>
Multiplication Game
</h1>
<!--game board-->
<div
id=
"board"
>
<div
id=
"right"
>
Right
</div>
<div
id=
"wrong"
>
Try again
</div>
<div
id=
"score"
>
Score:
<span
id=
"scoreNumber"
>
0
</span></div>
<div
id=
"problem"
></div>
<div
id=
"instruction"
></div>
<div
id=
"answers"
>
<div
id=
"answer1"
></div>
<div
id=
"answer2"
></div>
<div
id=
"answer3"
></div>
<div
id=
"answer4"
></div>
</div>
<div
id=
"start"
>
Start Game
</div>
<div
id=
"time"
>
Time:
<span
id=
"remainingTime"
>
55
</span>
sec
</div>
<div
id=
"gameover"
>
GAME OVER Your score:
<span
id=
"finalscore"
>
0
</span></div>
</div>
<!--audio files-->
<div
class=
"player"
>
<audio
id=
"startgame"
autoplay
controls
loop
>
</div>
<audio
id=
"lost"
>
<source
src=
"item2.ogg"
>
</audio>
<audio
id=
"win"
>
<source
src=
"item1.ogg"
>
</audio>
</div>
<!--JavaScript-->
<script
src=
"javascript.js"
></script>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment