-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
78 lines (64 loc) · 3.25 KB
/
about.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/about.css" />
<title>PokeDinner About Page</title>
</head>
<body>
<header>
<nav>
<ul>
<li id="left" class="u-cf"><a href="index.html">Home</a></li>
<li id="leftAbout" class="u-cf "><a href="#about">About</a></li>
</ul>
</nav>
</header>
<div class="about">
<p>
Are you a new Pokemon trainer or enthusiast? Ever wondered how to keep your Pokemon in peak physical condition? Now you can find the best
meal ideas for your Pokemon with a single search!.
</p>
<p>
<h5> Concept </h5>
<ul>
<li> PokeDinner is designed to help pokemon owners determine a fitting meal for their Pokemon.
Food results based on their weight and caloric needs. </li>
<li> Motivation: To have fun learning to incorporate new technologies in a creative fashion,
with the content focused on a recognizable established source. </li>
<h5>User story:</h5>
<li>AS A pokemon trainer/owner, I want to make sure I am feeding my pokemon an appropriate meal based on their size and caloric needs
so that my pokemon maintains a healthy diet and lifestyle.</li>
</ul>
</p>
<div>
<p>
<h5>Process:</h5>
<ul>
<h5>Technologies used:</h5>
<li>PokeAPI -https://pokeapi.co/ </li>
<li> Spoonacular Recipe Search API - https://spoonacular.com/food-api </li>
<h5>Breakdown of tasks and roles:</h5>
<li> Vinay: Structure and design implementation, GitHub controller, coding issue resolution. </li>
<li> Christiana: Site functionality, Logo Artwork, coding issue resolution. </li>
<li> James: Presentation prep, Project board management, coding issue resolution. </li>
<h5>Challenges:</h5>
<li> working with limited API requests.</li>
<li> deciding who does what. </li>
<h5>Successes:</h5>
<li> The website mostly works as intended!. </li>
</ul>
</p>
</div>
</div>
<footer>
<ul>
<li><a href="#"> PokeDinner © Copyright 2021 </a></li>
</ul>
</footer>
</body>
</html>