Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Timer</title>
<title>SWE101 Match Game</title>
<link rel="stylesheet" href="styles.css" />
</head>

<body>
<h1 id="header">Timer!</h1>
<h1 id="header">Match Game 🚀</h1>
<h2 id="subheader">Stopwatch:</h2>
<div class="container">
<div class="row">
<span class="word" id="elapsed">Time Elapsed: </span>
<div class="row">
<span class="word" id="time-left">Time Left: </span>
</div>
<div class="row">
<span class="word" id="start">Start</span>
<span class="word" id="stop"></span>
<span class="word" id="reset"></span>
Comment on lines +13 to +20
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these should be created is script.js using DOM

</div>
</div>
<!-- Import program logic -->
<script src="script.js"></script>
</body>
Expand Down
Loading