-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
44 lines (41 loc) · 1.63 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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&family=Nova+Square&display=swap" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="./css/styles.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- Main JS -->
<script defer src="./js/app.js"></script>
<title>Toma</title>
</head>
<body>
<h1>Toma</h1>
<!-- GAMEPLAY WINDOW -->
<section class="gameplay-section hidden">
<!-- INFORMATION CENTER AT THE BOTTOM OF THE GAMEPLAY WINDOW -->
<div class="gameplay-hud">
<div class="info-col">
<p class="age-text">AGE: 0</p>
<p class="hunger-text">HUNGER: 0</p>
<p class="sleepiness-text">SLEEPY: 0</p>
<p class="boredom-text">BORED: 0</p>
</div>
<div class="message-center">
<p class="toma-name">Toma</p>
<p class="message-text">HI FRIEND!</p>
</div>
</div>
</section>
<form class="form">
<input class="name-input" type="text" placeholder="NAME YOUR TOMAGATCHI">
<button class="start-button">PLAY</button>
</form>
<!-- <button class="play-button">PLAY</button> -->
<!-- <a href="https://www.freepik.com/vectors/vintage">Vintage vector created by stockgiu - www.freepik.com</a> -->
</body>
</html>