-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.42 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Is birthday lucky</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1 class="header">Lucky Birthday Finder ?😘</h1>
<div class="container">
<label for="date-of-birth" >Date of Birth :</label>
<input type="date" id="date-of-birth" placeholder="Enter Date of Birth">
<br>
<label for="lucky-number">Lucky Number :</label>
<input type="number" id="lucky-number" placeholder="Enter lucky Number">
<br>
<button id="check-number">Check number</button>
</div>
<div class="output"></div>
<footer class="footer">
<div class="connect">
<p>
Developed by
<a href="https://rakeshkumarportfolio.netlify.app/" target="_blank" >Rakesh kumar</a>
<ul class="linked">
<li class="link"><a href="https://github.com/Rakesh-code65" > Github </a></li>
<li class="link"><a href="https://www.linkedin.com/in/rakesh-kumar-11a74a19b/">
LinkedIn </a> </li>
<li class="link"><a href="https://twitter.com/Rkabhi7">Twitter </a> </li>
</ul>
</footer>
<script src="./script.js"></script>
</body>
</html>