-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.28 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>List of tasks</title>
</head>
<body>
<script>
let projects = {
'File Manager' : 'FileManager/index.html',
'Form Input Data' : 'formInputData/index.html',
'Payment Statement' : 'PaymentStatement/index.html',
'Interactive File Manager' : 'InteractiveFileManager/index.html',
'Promises' : 'Promises/index.html',
'React WorkShop' : 'js-react-workshop/index.html',
'GitHub profile info app' : 'github-profile-info-app/build/index.html',
'GitHub profile interactive' : 'github-profile-interactive/build/index.html',
'GitHub profiles info app' : 'github-profiles-info-app/build/index.html',
'Redux user form' : 'reduxUserForm/build/index.html',
'Redux github Profile' : 'reduxGithubProfile/build/index.html',
'Redux todo list' : 'reduxTodolist/build/index.html',
};
for(let key in projects) {
const elem = document.createElement('a');
elem.href = projects[key];
elem.innerHTML = key;
document.body.appendChild(elem);
document.body.appendChild(document.createElement('br'));
}
</script>
</body>
</html>