-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 2.35 KB
/
Copy pathindex.html
File metadata and controls
46 lines (38 loc) · 2.35 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
45
46
<!-- choices game: starting the game -->
<!doctype html>
<html lan="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
</head>
<body class="body">
<h1 class="headerFQ"> Welcome To (game name here)</h1> <!-- this is for the big headers at every page only -->
<div class="content"> <!-- this was done this way so that i could select everything on the page to center align. will be done for every other page too -->
<p class="text"> The rules are simmple. you get hit with a situation,
you make a choie, and then you move on. You will be given between 1
and 3 choices to pick from. There are no right choises; however you
will notice certain choices are colored differently like so:</p>
<img > <!-- image will go here to showcase what the choises look like -->
<p class="text"> Stick to the following and you'll be fine!</p>
<p1 class="text"> the</p1> <p1 class="gc"> first </p1> <p1> choice is green.
this means that this response is the least aggressive or
assertive choice. This will lead you to different outcomes
as the other one or two choices.
</p1>
<p1 class="text"> the</p1><p1 class="yc"> second </p1> <p1> choice is orange.
This means that this response is the middle ground. Both assertive/
aggressive but not overdoing it! This will also lead to a different outcome!
</p1>
<p1 class="text"> the</p1><p1 class="rc"> third </p1><p1> choice is RED.
This means that this response is the most aggressive and or assertive, really
the far end of the other spectrum, choice that you can make!. Again this choice
will likely lead you to an entirely different outcome than following the green
choices the entire way!</p1>
<p> Okay so confession time! Sometimes two choices can lead you to the same
outcome, but oh well what can you do about it.</p>
<button class="startbutton"><a href="./pages/P0.html"> Start Game</a></button> <!-- the directory structure will be "pg/o/r1/xxx where p stands for path g/o/r stand for green
orange or red responses and the number is the corresponding door or question that opens up after beginning the game for said response. later this will get more advanced as
the game progresses forms a branch like system-->
</div>
</body>
</html>