-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.15 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Home work JavaScript</h1>
<table>
<tr>
<th>Number</th>
<th>Task</th>
<th>Description</th>
<th>Link</th>
</tr>
<tr>
<td>1.</td>
<td>Spiral</td>
<td>Create a spiral with chosen width and height</td>
<td><a href="HomeWork-1/index-v1.html" target="_blank">MySpiral</a></td>
</tr>
<tr>
<td>2.</td>
<td>Role parser</td>
<td>Create program witch will parse text and find all strings for appropriate character. And then output them <br>Note: parser relies on RegX /^Character Name\./</td>
<td><a href="HomeWork-2/index.html" target="_blank">MyCharParser</a></td>
</tr>
<tr>
<td>3.</td>
<td>Data-sorter</td>
<td>Sort data by price or ratingReview</td>
<td><a href="HomeWork-3/index.html" target="_blank">MySorter</a></td>
</tr>
</table>
</body>
</html>