update global css, add countdown and timer
This commit is contained in:
parent
c52aa334ca
commit
10022e6d93
8 changed files with 339 additions and 0 deletions
25
timer/index.html
Normal file
25
timer/index.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
||||
<title>zy's Timer</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<span id="time">00:00:00:00</span>
|
||||
<div class="buttons">
|
||||
<button id="start">Start</button>
|
||||
<button id="lap">Lap</button>
|
||||
<button id="reset">Reset</button>
|
||||
</div>
|
||||
<a href="/countdown">Countdown</a>
|
||||
<ul id="lap-list"></ul>
|
||||
</div>
|
||||
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue