-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (34 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Horoscope App</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=Chivo&family=DM+Sans:opsz,wght@9..40,600&family=Titan+One&display=swap" rel="stylesheet">
<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=Montserrat:ital,wght@0,100;1,100&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="radial-gradient">
<h1>Enter your date of birth to discover your sign </h1>
<div class="userSection">
<form>
<label for="month"> Month: </label>
<input type="number" id="month" placeholder="MM">
<label for="date"> Date: </label>
<input type="number" id="date" placeholder="DD">
</form>
<button id="showMe">Show my sign</button>
</div>
<h3 id="result"></h3>
<p id="p1"></p>
<p id="p2"></p>
<p id="p3"></p>
<p id="p4"></p>
<p id="p5"></p>
<small>Website by Cassandra Manotham © 2023</small>
<script src="js/main.js"></script>
</body>
</html>