-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="./css/main.css">
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<!-- CSS Animation -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<!-- Main JS -->
<script defer src="./scripts/app.js"></script>
<title>ZenBlock Tomagotchi</title>
</head>
<body>
<div>
<h1>ZenBlock Tomagotchi</h1>
<div class="timer-metrics">
<span id="timer">Countdown: 120s</span>
<span id="age">Age: 1</span>
<button id="start-button">Generate ZenBlock</button>
</div>
<div id="tomagotchi">
<h3>Life Stats & Interactions</h3>
<button id="metric-hunger">Hunger</button>
<button id="metric-sleepiness">Sleepiness</button>
<button id="metric-play">Play</button>
</div>
<img class="block" src="https://media.giphy.com/media/No3Q2COl8SEnu/giphy.gif" alt="">
<button id="zen-mode">Zen-Mode</button>
</div>
</body>
</html>