-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.03 KB
/
index.html
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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" />
<title>Factorial App</title>
</head>
<body>
<main class="container">
<h1><img src="public/vite.svg" alt="Vite" height="60" width="60" /> Factorial App</h1>
<form>
<label for="number">
Number
<input type="text" id="number" name="number" placeholder="Enter number" />
</label>
<div class="grid">
<button type="submit">Find Factorial</button>
<button type="reset" class="secondary">Reset</button>
</div>
</form>
<article hidden>
<div class="headings">
<h2></h2>
<h3>Yay! found the factorial.</h3>
</div>
</article>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>