Update index.html
Browse files- index.html +1 -2
index.html
CHANGED
@@ -4,14 +4,13 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Click Per Second Tracker</title>
|
7 |
-
<link rel="stylesheet" href="
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
<h1>Click Per Second Tracker</h1>
|
12 |
<div id="timer" class="timer">15</div>
|
13 |
<button id="clickButton" class="start-button">Start</button>
|
14 |
-
|
15 |
<div id="cpsDisplay" class="cps-display">CPS: 0.00</div>
|
16 |
</div>
|
17 |
<script src="script.js"></script>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Click Per Second Tracker</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
<h1>Click Per Second Tracker</h1>
|
12 |
<div id="timer" class="timer">15</div>
|
13 |
<button id="clickButton" class="start-button">Start</button>
|
|
|
14 |
<div id="cpsDisplay" class="cps-display">CPS: 0.00</div>
|
15 |
</div>
|
16 |
<script src="script.js"></script>
|