-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (40 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
48 lines (40 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
<!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>Astrology API Project</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="title-section">
<h1>Daily Horoscope</h1>
</section>
<section class="instructionsForButton">
<p id = "enterBelow">Enter your sign below for your daily horoscope 💫
</p>
</section>
<section class="enter-sign">
<input type="text" name="" value="" placeholder="What's your sign?">
<button type="button" name="button">Get Horoscope</button>
</section>
<section class="horoscope-info">
<section class="section-one">
<ul>
<li id="date-range">Date Range</li>
<li id="lucky-color">Lucky Color</li>
<li id="mood">Feels</li>
</ul>
</section>
<section class="section-two">
<h2 id="zodiac-sign">Enter your zodiac sign above for your daily horoscope...</h2>
<p></p>
</section>
</section>
<script src="js/main.js"></script>
</body>
</html>