-
Notifications
You must be signed in to change notification settings - Fork 0
/
description.html
53 lines (48 loc) · 1.92 KB
/
description.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
<!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="/css/description.css">
<title>Document</title>
</head>
<body>
<table>
<tr>
<th id="problem">Problem</th>
</tr>
<tr id="beginner">
<td>Beginner Problem Definition</td>
<td>
<ol>
<li>Retrieving a list of information fetched from a folder.</li>
<li>Sort information in alphabetical order.</li>
<li>Display list on the web.</li>
</ol>
</td>
</tr>
<tr id="medium">
<td>Medium Problem Definition</td>
<td>
<ol>
<li>Fetch an array of objects from a local folder.</li>
<li>Sort the information in alphabetical with a button.</li>
<li>Display the array of objects on the web and sort by clicking button.</li>
</ol>
</td>
</tr>
<tr id="advanced">
<td>Advanced Problem Definition</td>
<td>
<ol>
<li>Fetch a json file which is an array of objects in our local folder.</li>
<li>Use the information from the json to display on the web.</li>
<li>Display the json objects on the webpage and sort based on attribute by clicking button attached to an eventlistener.</li>
</ol>
</td>
</tr>
</table>
<p id="paragraph"><a href="/index.html">Home Page</a></p>
</body>
</html>