-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction-objects.html
39 lines (39 loc) · 1.08 KB
/
function-objects.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
<!DOCTYPE html>
<html>
<head>
<title>Function objects</title>
<style>
body {
max-width: 600px;
margin: auto;
}
nav {
display: flex;
justify-content: space-evenly;
padding-top: 20px;
}
h1 {
text-align: center;
}
.block {
text-align: center;
}
img {
width: 100%;
}
</style>
<script src="function-objects.js" type="text/javascript"></script>
</head>
<body>
<nav>
<a href="class-objects.html">Class objects</a>
<a href="function-objects.html">Function objects</a>
<a href="multi-class-objects.html">Multiple class objects</a>
</nav>
<div class="block">
<h1>Objects created with function</h1>
<p>Total Objects: 10_000_00 (1 million)</p>
<img src="./images/function-objects.png" alt="" />
</div>
</body>
</html>