-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (86 loc) · 4.16 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
78
79
80
81
82
83
84
85
86
87
88
89
<!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>Whats My Signs?</title>
<link rel="stylesheet" href="./style.css"/>
<script defer src="./scripts/zodiak.js"></script>
</head>
<body>
<header class="header">
<h1 class="title">Your Astrological Signs Around the World</h1>
</header>
<main class="main">
<div id="grid2">
<div class="head">
<form class="form grid">
<label for="birthday">What is your birth date on the
<span style="color:green" id="gregorian" class="greg"
title="The Gregorian calendar is a solar calendar with 12 months of 28 to 31 days each and is used in most parts of the world today. Introduced in October 1582 by Pope Gregory XIII as a replacement for the Julian calendar, the principal change was to space leap years differently so as to make the average calendar year 365.2425 days long instead of 365.25 days.">Gregorian Calendar</span>?
</label>
<div id="inputAndButton">
<input type="date" id="birthday" name="birthday" minlength="10" maxlength="10" value="mm/dd/yyyy"/>
<input type="submit" value="Process Birthday"/>
</div>
</form>
</div>
<div>
<aside id="explain">You might think that if you are a water bearer on the Gregorian calendar, you would be a water bearer on the Hebrew calendar as well. That's often true...but not always. </aside>
</div>
<div class="div4 ifThis">
<p>You said your birthday was on
<span id="birthdayG"></span>
</p>
</div>
<div class="div5 astroG">
<p id="gregorianSignIntro">You likely already know that your astrological sign is
<span id="gregorianSpan"><p id="gregorianSign"></p></span>.
</p>
</div>
<div class="div6 thenThat">
<p> Your birth date on the Hebrew calendar was on
<span id="birthdayH" ></span>
</p>
</div>
<div class="div7 astroH">
<p id="hebrewSign">Your astrological sign on the Hebrew Calendar is . . .
<span id="hebrewSpan"></span>
</p>
</div>
<div class="div8 Chinese">
<p id="chineseSign">On the Chinese Calendar, you were born in . . .
<span id="chineseYear"></span>
</p>
</div>
<div class="div7 Celtic">
<p id="celticSign">According to the Celtic Tree Calendar, you are represented by . . . <span id="celticSpan"></span>
</p>
</div>
</div>
<!-- keep for later
<aside class="stayInTouch">
<form class="form">
<label for="email">If you'd like to stay in contact with us, please enter your email: </label>
<input type="email" id="email" name="email"/>
<input type="submit"/>
</form>
</aside> -->
</main>
<footer>
<div style="text-align:right;line-height:0.7;font-size: small;">
<hr id="footerHR">
<p >Author:
<a href= "mailto: [email protected]">Jennifer Einstein</a>
</p>
<a href="/privacy.html" >Privacy Policy</a>
<span>
<p>Powered by
<a href="https://www.hebcal.com">Hebcal Shabbat Times</a>
</p>
</span>
</div>
</footer>
</body>
</html>