-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagecalculator.html
107 lines (78 loc) · 3.11 KB
/
agecalculator.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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>Document</title>
<link rel="stylesheet" href="./styles/agecalculator.css"/>
<link rel="stylesheet" href="./homepageFooter/footer.css">
<link rel="stylesheet" href="./homepageNavbar/styles/navbar.css">
</head>
<body>
<!-- navbar -->
<div id="navbar-container"></div>
<div>
<div id="calci">
<iframe id=sc-age_cal width=" 500" height=470 allowtransparency=true
src="https://www.stylecraze.com/tools/age-calculator/?embed_id=1" frameborder=0
allowfullscreen></iframe>
</div>
<div id="below_para">
<p> Age calculator is a tool to determine your age in years, months, weeks, days, hours, minutes and in
seconds. It can also help you to calculate the difference between two dates. With age calculator you can
calculate your age in various stage of life.
<br> Age calculator is a tool to determine your age in years, months, weeks, days, hours, minutes and in
seconds. It can also help you to calculate the difference between two dates. With age calculator you can
calculate your age in various stage of life.
</p>
<h2>
How to calculate age from date of birth?
</h2>
<p>
If your date of birth is 17th July 1984 and the current date is 21st January 2020.
</p>
<p>
So you should enter the date of birth 11/07/1984 and click on the submit button, as the current date is
already set.
</p>
<p>
<b>So your Age is:</b>
<p>35 years, 6 months, 4 days</p>
</p>
<p>
<b>Your Age in Month is:</b>
<p>426 months, 0 weeks, 4 days</p>
</p>
<p>
<b>Your Age in Week is:</b>
<p>1853 weeks, 0 days, 22 hours</p>
</p>
<p>
<b>Your Age in Days is: </b>
<p>12971 days, 22 hours, 5 minutes</p>
</p>
<p><b>Your Age in Hours is:</b>
<p>311326 hours, 5 minutes, 20 seconds</p>
<p><b>Your Age in Minutes is:</b>
<P>18679565 minutes, and 20 seconds</p>
<p><b>Your Age in Seconds is:</b>
<p>1120773920 seconds since your birth</p>
</p>
</div>
</div>
<!-- footer -->
<div id="footer"></div>
</body>
</html>
<script type="module">
import navbar from "./homepageNavbar/components/navbar.js"
import hoverFun from "./homepageNavbar/components/hoverFun.js"
document.querySelector("#navbar-container").innerHTML = navbar()
hoverFun()
</script>
<script type="module">
import footer from "./homepageFooter/components/footer.js"
document.querySelector("#footer").innerHTML = footer()
</script>
<script src="./InnerWebsite/scripts/Showlogin.js>