-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 1.06 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
<html>
<head>
<script src="js/main.js"></script>
<title>Horoscope by Simily</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<div id='title'>
<span>
</span>
<br>
<span>
</span>
</div>
<body>
</div>
<div class="container">
<div class="row">
<div class="col-m-6 col-m-offset-3">
<form>
<div class="form-group">
<font color= yellow><h1> Enter your zodiac sign</h1></font>
</div>
<div class="form-group">
<input id="sign" class="form-control">
</div>
<div class="form-group">
<button type="button" class="btn btn-danger" onclick="horoscope()">CLICK HERE</button>
</div>
</form>
<div>
<h1 id="yourSign"></h1>
<img id="icon" src="">
</div>
<div id="yourHoroscope">
</div>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>