forked from eduardconstantin/Regenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- DOCUMENT META DATA -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- META DATA -->
<title>Regenerator</title>
<meta name="description" content="Regenerate your body and soul." />
<meta name="keywords" content="Regenerate, body, soul, money" />
<!-- ICONS -->
<link rel="icon" href="IMG/favicon.png" />
<!--[if IE]><link rel="shortcut icon" href="IMG/favicon.ico" /><![endif]-->
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="CSS/style.css" media="screen" title="standard" />
<link rel="stylesheet" type="text/css" href="CSS/normalize.css" />
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet" />
</head>
<body>
<header>
<div class="bg">
<button class="begin hvr-ripple-in">START REGENERATING!</button>
<div class="text">
<h1><b>Regeneration</b> will begin shortly.</h1>
<p class="first">Please put your hands in front of your screen.</p>
<p class="second">Close your eyes and prepare your body.</p>
</div>
<div class="hands">
<div class="left"></div>
<div class="right"></div>
</div>
</div>
<div class="audiojsZ">
<audio
class="audio"
src="./MP3/Starlight-Tale-Soft-Classical-Piano-Music.mp3"
preload="auto"
></audio>
<div class="play-pauseZ">
<p class="playZ"></p>
<p class="pauseZ"></p>
<p class="loadingZ"></p>
<p class="errorZ"></p>
</div>
<div class="scrubberZ">
<div class="progressZ"></div>
<div class="loadedZ"></div>
</div>
<div class="timeZ"><em class="playedZ">0</em>/<strong class="durationZ">0</strong></div>
<div class="error-messageZ"></div>
</div>
</header>
<script
src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
crossorigin="anonymous"
></script>
<script src="JS/audio.js"></script>
<script src="JS/main.js"></script>
</body>
</html>