-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
78 lines (66 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/home.css">
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/style.css">
<title>OCTOGOTCHI</title>
</head>
<body>
<header>
<div class="header-links">
<a class="glow" href="./about-us/index.html">About Us</a>
<a class="glow" href="./octo-facts/index.html">Octopus Facts</a>
</div>
</header>
<!-- Main ----------------------------------------------- -->
<main>
<img id="body-title" src="./assets/octogotchi-title.png" alt="octogochi-virtual-pet">
<br>
<div class="oval">
<!-- Screen ----------------------------------------------------------------------------------->
<span class="screen">
<div class="text">
<h1>Welcome to Octogotchi!</h1>
<br>
<p>Control keys:</p><br>
<p>Press F or <img src="./assets/right-arrow.png" alt="right-arrow-button"> to feed.</p><br>
<p>Press M or <img src="./assets/left-arrow.png" alt="left-arrow-button"> to heal.</p>
<form id="form" action="submit">
<section class="input-container" id="contain">
<div class="input"></div>
Owner Name:<input type="text" name="name">
Octopus Name:<input type="text" name="pet-name">
<button id="form-button">Start Parenting!</button>
</div>
</section>
</form>
<div class="arrow-buttons">
<div>
<input type="image" src="./assets/left-arrow.png" id="left-arrow" alt="left-arrow-button">
</div>
<div>
<input type="image" src="./assets/circle.png" id="middle-button" alt="select-button">
</div>
<div>
<input type="image" src="./assets/right-arrow.png" id="right-arrow" alt="right-arrow-button">
</div>
</div>
</div>
</span>
<!-- (END OF FORM AND SCREEN) ARROW BUTTONS START ---------------------------------------------->
</div>
<br>
</main>
<!-- Footer-------------------------------- ----------------------------------------------- -->
<footer id="footer">
<div class="glow">Created By Katie Berry, Donny Vu, Perry Sittser, Richard Hillman</div>
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>