-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 965 Bytes
/
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
<html>
<head>
<link href="styles.css" rel="stylesheet" />
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Candal' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="main-container">
<form>
<div class="formS">
<h1>Arti Rasi Bintang / Zodiak ?</h1>
</div>
<div class="formS">
<input id="your-sign" class="form-input" placeholder="contoh :aries"></input>
</div>
<div class="formS">
<button type="button" onclick="astSign()">Click here</button>
</div>
</form>
<div>
<h1 id="yourSign"></h1>
<h2 id="birthdayRange"></h2>
<h2 id="attributes"></h2>
<img id="zodiacImage">
</div>
</div>
<script src="app.js"></script>
</body>
</html>