-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (73 loc) · 3.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What JellyCat are you?</title>
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" href="css/normalize.css"> -->
<link rel="icon" href="images/JELC3M.jpg">
</head>
<body>
<header>
<h1><img src="images/jellycat-logo.webp" alt="jellycat"></h1>
<div>
<button class="help"><img src="icons/help-button.png" alt="help button"></button>
</div>
</header>
<section class="birthday-input">
<form class="birthday-form">
<div><h1>What Jellycat are you?</h1></div>
<div class="control">
<label for="birthday">Enter your birthday to find out</label>
<input type="date" name="birthday" id="birthday1" />
</div>
<p class="error">Please enter valid birthday</p>
<div class="control">
<button class="submit" type="submit">Submit</button>
</div>
</form>
</section>
<div class="helpbox">
<div class="helpcontent">
<img class="closehelp" src="icons/close.png" alt="close button">
<div>
<h2>Welcome to Jellycat generator</h2>
<p>To find out your character, you can:</p>
<p><strong>Input your birthday</strong> or <strong>Click on each character to view details.</strong></p>
</div>
<img class="sticker" src="images/JELC3M.jpg" alt="jellycat">
</div>
</div>
<div class="main-content">
<div class="selection">
<img class="avocado" onclick="ariesDetails()" src="images/avocado.jpeg" alt="avocado">
<img class="bee" onclick="taurusDetails()" src="images/bee.jpeg" alt="bee">
<img class="dragon" onclick="geminiDetails()" src="images/dragon.webp" alt="dragon">
<img class="bunny" onclick="cancerDetails()" src="images/bunny.jpeg" alt="bunny">
<img class="egg" onclick="leoDetails()" src="images/egg.webp" alt="egg">
<img class="heart" onclick="virgoDetails()" src="images/heart.jpeg" alt="heart">
<img class="bear" onclick="libraDetails()" src="images/bear.jpeg" alt="bear">
<img class="cat" onclick="scorpioDetails()" src="images/cat.webp" alt="cat">
<img class="dino" onclick="sagittariusDetails()" src="images/dino.jpeg" alt="dino">
<img class="dog" onclick="capricornDetails()" src="images/dog.jpeg" alt="dog">
<img class="duck" onclick="aquariusDetails()" src="images/duck.webp" alt="duck">
<img class="octopus" onclick="picesDetails()" src="images/octopus.jpeg" alt="octopus">
</div>
<p>Select one of the characters above to view details</p>
</div>
<div class="content" id="sign">
<figure>
<img class="pic" src=" " alt="avocado">
<figcaption></figcaption>
</figure>
<p class="description"></p>
<audio id="audio_player" src=""></audio>
<img class="close" src="icons/close.png" alt="close button">
<!-- <div>
<button class="pause">Pause</button>
</div> -->
</div>
<script src="js/app.js"></script>
</body>
</html>