-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclass.html
More file actions
36 lines (32 loc) · 1.12 KB
/
Copy pathclass.html
File metadata and controls
36 lines (32 loc) · 1.12 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
36
<!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" type="text/css" href="index.css">
<title>Classmates</title>
<script>
fetch('class.json')
.then(response => response.json())
.then(data => {
// Get the list element
const list = document.getElementById('list');
// Loop through the data and each items to the list
data.forEach (student => {
const li = document.createElement('li');
const a = document.createElement ('a');
// Set the text content and href attributes for the link
a.textContent = student.Name;
a.href = "http://" + student.Github + ".github.io";
// Add the link to the list
li.appendChild(a);
list.appendChild(li);
});
})
</script>
</head>
<body>
<ul id="list"></ul>
</body>
</html>