-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.55 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.55 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Factorial Calculator</title>
<link rel="icon" href="favicon.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- The max value before overload is 1558 -->
<!-- Api URL: https://573f616c-2f33-4a25-8dd3-eab903401ca9-00-15qkzj0ppjof8.spock.replit.dev/ -->
</head>
<body>
<div>
<div class="top">
<h1 class="HeadTitleTxt">Factorial Calculator</h1>
<div class="maindescriptioncontainer">
<p>This is a calculator that can calculator factorial number like n!, and this calculator can show the
full number instead of showing "infinity" in heavy calculate</p>
</div>
</div>
<br>
<div class="main">
<div class="form">
<input id="input" type="number" placeholder="Enter a number">
<div id="enter">Enter</div>
</div>
<br>
<textarea readonly id="display"></textarea>
<br>
<br>
<div class="copyarea">
<button id="copy">📋 Copy</button>
</div>
</div>
<br>
<br>
<br>
</div>
<script src="script.js"></script>
<footer class="footer">
<p style="margin-left:15px;">© 2025 Richard Liu</p>
<p>Factorial Calculator</p>
<p style="margin-right:15px;">HTML/CSS/JS + Python</p>
</footer>
</body>
</html>