-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
35 lines (27 loc) · 900 Bytes
/
links.html
File metadata and controls
35 lines (27 loc) · 900 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
34
35
<!doctype html>
<html>
<head>
<title>JavaScript For Loops</title>
</head>
<body>
<h1>JavaScript For Loops</h1>
<script>
var links = [];
links[0] = {
name: "W3Schools",
url: "http://www.w3schools.com/",
description: "W3Schools is a web developer information website, with tutorials and references relating to web development topics such as HTML, CSS, JavaScript and PHP."
};
links[1] = {
name: "Code Academy",
url: "https://www.codecademy.com/",
description: "Codecademy is an online interactive platform that offers free coding classes in 9 different programming languages."
};
links[2] = {
name: "W3",
url: "http://www.w3.org/",
description: "The World Wide Web Consortium is the main international standards organization for the World Wide Web."
}
</script>
</body>
</html>