-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<title>Horoscope App</title>
</head>
<body id="body">
<section class="section">
<div class="top">
<h1 class="title">horoscope me</h1>
<span>enter your birthdate... if you dare.</span>
</div>
<div class="details">
<div class="title">
<p>give us the month you were born (1 to 12)</p>
<input class="input is-large" type="number" placeholder="enter month in MM format" id="month">
</div>
<div class="title">
<p>next, provide the day you were born (e.g. 22)</p>
<input class="input is-large" type="number" placeholder="enter day in DD format" id="day">
</div>
<div class="title">
<button class="button is-light is-large" type="submit">Get Horoscope</button>
<div>
<div class="message-appear">
<span id="message-appear"></span>
</div>
</div>
</section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>