forked from jv-devs/when-you-were-born
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 2.4 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
<!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>When You Were Born</title>
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body class="background-image">
<main class="container">
<section class="modal active">
<div class="modal-title">When You Were Born</div>
<p class="app-description">Have you ever wondered what was on the news on the day you were born? Enter your DOB to find out!</p>
<form action="#" class="date-form">
<label class="sr-only" for="date-input">enter birth date</label>
<input type="date" name="date-input" id="date-input" required />
<button type="submit">Show me the money</button>
</form>
<div class="error-message"></div>
</section>
<header>
<div class="header-top">
<h1>When You Were Born</h1>
<button class="date-button button" aria-label="return to date input"><i class="fa-sharp fa-solid fa-calendar-days"></i></button>
</div>
<div class="nyt-image-container"><img src="./images/nyt.svg" alt="New York Times logo" /></div>
</header>
<article>
<div class="cycle-buttons">
<button class="prev-button button"><i class="fa-regular fa-hand-point-left"></i></button>
<div class="page-display"></div>
<button class="next-button button"><i class="fa-regular fa-hand-point-right"></i></button>
</div>
<div class="article-content"></div>
</article>
</main>
<footer>
<p>
<!-- <a href="https://junocollege.com/" target="_blank">Created at Juno College</a> -->
Created by <a href="https://www.johnmal.dev/" target="_blank">John</a> and <a href="https://vincentyoung.dev/" target="_blank">Vincent</a> at <a href="https://junocollege.com/" target="_blank">Juno College</a>
</p>
</footer>
<script src="./scripts/script.js"></script>
</body>
</html>