-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpedition.html
116 lines (115 loc) · 3.43 KB
/
expedition.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="about.css" />
<title>Route Calculator App</title>
</head>
<body>
<div class="wrapper">
<header class="nav-bar">
<div class="links">
<a href="./index.html#projects" class="nav-links"
><div class="back-button"></div
></a>
</div>
</header>
<h1 class="titles" id="title">Move Speed Calculator</h1>
<div class="body-container">
<div class="content">
<div class="images-container">
<div class="heading-icon-container">
<h2 class="headings">Tech stack used:</h2>
<div class="icon-container">
<div class="container">
<img
src="./images/techIcons/javascript.svg"
class="icons"
alt="Javascript icon"
title="Javascript"
/>
<div class="text-block">
<p>Javascript</p>
</div>
</div>
<div class="container">
<img
src="./images/techIcons/html.svg"
class="icons"
title="HTML"
alt="HTML icon"
/>
<div class="text-block">
<p>HTML</p>
</div>
</div>
<div class="container">
<img
src="./images/techIcons/css.svg"
class="icons"
title="CSS"
alt="CSS icon"
/>
<div class="text-block">
<p>CSS</p>
</div>
</div>
</div>
</div>
</div>
<div class="heading-container">
<h2 class="headings">Brief:</h2>
<p class="text-content">
I was asked to create an app for a board game called Expedition.
The aim of the game is for players to visit as many mountain peaks
as possible in as little time as possible and there is a formula
for calculating how far the players can move based on the weight
of the equipment they choose.
<br /><br />
The app is designed to make it easier for players to calculate
their move speed and choose which equipment they would like to
take with them on their expedition.
</p>
</div>
</div>
<div class="heading-container">
<h2 class="headings">App features the client wanted:</h2>
<div class="features-list-container">
<ol class="list">
<li>Mobile view</li>
<li>
To see all the equipment items and their weight in a table
</li>
<li>To be able to select and deselect different items</li>
<li>
Totals to be calculated at each section when items are selected
</li>
<li>
Conditional selection of certain items (tents and sleeping bags)
</li>
<li>Move speed to be calculated and displayed</li>
</ol>
</div>
</div>
<div class="heading-container">
<h2 class="headings">What I learned:</h2>
<ul class="list">
<li class="learned-list">
Effective communication with a client to meet their needs for the
project
</li>
<li class="learned-list">
Use of switch statements for checking against multiple conditions
</li>
</ul>
</div>
</div>
<footer class="footer-nav">
<p class="copyright">(c) 2023 Alice Firminger All Rights Reserved</p>
</footer>
</div>
<script src="about.js"></script>
</body>
</html>