-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (38 loc) · 1.51 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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IntrepidBird | Pi</title>
<!-- Favicon -->
<link rel="icon" href="images/pi.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- Header Section -->
<header class="bg-dark text-white text-center p-4">
<h1>Pi Digits</h1>
</header>
<!-- Main Content -->
<section id="piDigits" class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6">
<h2>Enter the Number of Digits</h2>
<form id="digitsForm">
<div class="form-group">
<label for="digits">Number of Digits:</label>
<input type="number" class="form-control" id="digits" placeholder="Enter the number of digits" required>
</div>
<button type="submit" class="btn btn-primary w-100">Generate Pi Digits</button>
</form>
<div id="piResult" class="mt-4"></div>
</div>
</div>
</section>
<!-- Bootstrap & jQuery JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>