-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.13 KB
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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🐶狗狗歲數計算機</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="img/icon.png" />
<link rel="apple-touch-icon" href="./icon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./icon.png" />
</head>
<body>
<h1>🐶狗狗歲數計算機</h1>
<div class="calculator">
<label for="dob">狗狗出生日期:</label>
<div class="calculator-column">
<input type="date" id="dob" />
<button id="calcBtn">計算</button>
</div>
<div id="result"></div>
<div class="hint">
<b>換算公式:</b><br />
<p>人類年齡 = 16 × ln(狗年齡) + 31 <br />ln 為自然對數<br /></p>
參考文獻:<a
href="https://www.cell.com/cell-systems/fulltext/S2405-4712%2820%2930203-9"
target="_blank"
>Ideker et al., Cell Systems (2020)</a
>
</div>
</div>
<script src="calculator.js"></script>
</body>
</html>