-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 2.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Birthday Palindrome</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="imgs/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="imgs/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="imgs/favicon-16x16.png"
/>
<link rel="manifest" href="imgs/site.webmanifest" />
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<section>
<form>
<h1>Palindrome Birthday!</h1>
<div class="info">
A palindrome is a word/number which reads the same backward as
forward. This app checks your birthdate in 6 formats dd-mm-yyyy,
mm-dd-yyyy, yyyy-mm-dd, dd-mm-yy, mm-dd-yy, yy-mm-dd.
</div>
<br />
<br />
<label class="input-label">Enter your Birthday date:</label>
<input
class="input"
type="date"
placeholder="Enter Birthdate"
required
/>
<button class="submit">Show</button>
<img src="imgs/gi11.gif" id="timer" class="hidden" />
<p class="output" class="hidden"></p>
</form>
</section>
<footer class="footer">
<div class="social-container">
<center>
<a href="https://github.com/harshitadaswani" class="social-icons">
<img src="imgs/github.png"
/></a>
<a
href="https://www.linkedin.com/in/harshitabdaswani/"
class="social-icons"
>
<img src="imgs/linkedin.png"
/></a>
<a href="https://twitter.com/harshi_daswani" class="social-icons">
<img src="imgs/twitter.png"
/></a>
<a href="https://harshitabdaswani.netlify.app/" class="social-icons">
<img src="imgs/portfolio.png"
/></a>
</center>
</div>
</footer>
<script src="src/app.js" type="text/javascript"></script>
</body>
</html>