-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (120 loc) · 5.26 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>lyf3</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/lightstyle.css">
<script src="js/jquery-3.6.1.min.js"></script>
</head>
<body>
<div class="container" style="text-align:center">
<br>
lyf3
</div>
<br>
<!-- CONTENT -->
<div class="container">
<div class="row">
<!-- EVENTS -->
<div class="three columns">
<strong>Events</strong>
<br>
<br>
<div id="events">
</div>
</div>
<!-- MAIN -->
<div class="six columns">
<div class="tabs">
<!-- Tabs -->
<ul class="tab-links">
<li class="active" id="#home">Home</li>
<li id="#town">Town</li>
</ul>
<div class="tab-content">
<div id="home" class="tab active">
Welcome to lyf3.
<br>
<br>
<button id="sleep">Go to sleep</button>
<br>
<button id="mom">Complain to mom</button>
</div>
<div id="town" class="tab">
The same old town you grew up in.
<br>
<br>
<button id="#gym">Gym</button>
<br>
<button id="#restaurant">McDangles</button>
<br>
<button id="#school">City College</button>
</div>
<div id="gym" class="tab">
<strong>Gym</strong>
<br>
Not a soul to be seen, but the place stinks to high heavens.
<br>
<pre id="minigame_animation"></pre>
<progress id="minigame_progress_bar" value="0" max="50"></progress>
</div>
<div id="gym-no" class="tab">
<strong>Gym</strong>
<br>
You don't have the energy for this.
<br>
</div>
<div id="restaurant" class="tab">
<strong>McDangles</strong>
<br>
There's something special about this place. This is where you and your friends hung out before they all left for the city.
<br><br>
<strong>Position</strong> - $<span id="job_pay">0</span>/<span id="job_cost">0</span>
<br>
<button id="promotion">Look for a job</button>
<br>
<button id="work">Work</button>
<br>
<button id="job-quit">Quit</button>
</div>
<div id="school" class="tab">
<strong>City College of Centralia</strong>
<br><br>
2 COOL 4 SCHOOL
</div>
</div>
</div>
</div>
<!-- STATS -->
<div class="three columns">
<strong>Stats</strong>
<br>
<br>
<div class="stats">
<strong>Day:</strong> <span id="days"></span><br>
<strong>Energy:</strong> <span id="energy"></span><br>
<strong>Intelligence:</strong> <span id="intelligence"></span><br>
<strong>Appearance:</strong> <span id="appearance"></span><br>
<br>
<strong>Job:</strong> <span id="job"></span><br>
<strong>Money:</strong> $<span id="money"></span><br>
</div>
</div>
</div>
</div>
<br>
<!-- FOOTER -->
<div class="footer" style="position: fixed; bottom: 0px; width: 100%">
<button id="source-code">Source Code</button>
<button id="theme">Dark Theme</button>
<button id="reset">Reset</button>
<button id="save">Save</button>
</div>
</body>
</html>
<script src="js/main.js"></script>
<script src="js/job.js"></script>
<script src="js/gym_minigame.js"></script>