-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 955 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (33 loc) · 955 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src='./js/jquery.js'></script>
<!--script src='./js/register-api.js'></script-->
<script src='./js/functions.js'></script>
<script src='./js/init.js'></script>
<link rel='stylesheet' href='./css/custom.css'>
</head>
<body>
<div class='other'></div>
<div class='input'>
<h1>Roberto Reyes: CODE 2040 API Challenge</h1>
<p>Select a stage button to see a problem and its solution</p>
<p>You may also select the 'status' button to see my current status</p>
<button data-func='reverse'>Stage 1</button>
<button data-func='haystack'>Stage 2</button>
<button data-func='prefix'>Stage 3</button>
<button data-func='dating'>Stage 4</button>
<button data-func='status'>Status</button>
</div>
<div class='output'>
<div class='problem'>
<h3>Problem:</h3>
<ol></ol>
</div>
<div class='solution'>
<h3>Solution: </h3>
<ol></ol>
</div>
</div>
</body>
</html>