-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (34 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birthday Countdown</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div id="formContainer">
<h1>Birthday Countdown</h1>
<div>
<label for="personName">Person's Name:</label>
<input type="text" id="personName" placeholder="Enter Name">
</div>
<div>
<label for="birthMonth">Birth Month:</label>
<input type="number" id="birthMonth" min="1" max="12" placeholder="Month (1-12)">
</div>
<div>
<label for="birthDay">Birth Day:</label>
<input type="number" id="birthDay" min="1" max="31" placeholder="Day (1-31)">
</div>
<button id="generateButton" onclick="generateCountdownLink()">Generate Countdown Link</button>
</div>
<div id="result"></div>
<button id="copyButton" style="display:none;" onclick="copyToClipboard()">Copy URL</button>
<button id="shareButton" style="display:none;" onclick="shareLink()">Share</button>
</div>
<h3>Built by <a href="https://singlebucks.blogspot.com" target="_blank" rel="noopener noreferrer">Sonu Kushwaha</a></h3>
<script src="./app.js"></script>
</body>
</html>