-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 728 Bytes
/
index.html
File metadata and controls
32 lines (30 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="./assets/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<div class="button-container">
<button id="plusFive">+5</button>
<br />
<br />
<button id="plusTen">+10</button>
<br />
<br />
<button id="plusFifteen">+15</button>
<br />
<br />
<button id="plusTwenty">+20</button>
</div>
<div class="display-container">
<h2 id="display-heading"></h2>
<h1 id="number-indicator">0</h1>
</div>
</div>
<script src="./assets/main.js"></script>
</body>
</html>