Skip to content

Commit 4872c5a

Browse files
authored
Class object template
1 parent 49316d5 commit 4872c5a

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

class-objects.html

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Class Objects</title>
5+
<style>
6+
body {
7+
max-width: 600px;
8+
margin: auto;
9+
}
10+
nav {
11+
display: flex;
12+
justify-content: space-evenly;
13+
padding-top: 20px;
14+
}
15+
h1 {
16+
text-align: center;
17+
}
18+
.block {
19+
text-align: center;
20+
}
21+
img {
22+
width: 100%;
23+
}
24+
</style>
25+
<script src="class-objects.js" type="text/javascript"></script>
26+
</head>
27+
<body>
28+
<nav>
29+
<a href="class-objects.html">Class objects</a>
30+
<a href="function-objects.html">Function objects</a>
31+
<a href="multi-class-objects.html">Multiple class objects</a>
32+
</nav>
33+
<div class="block">
34+
<h1>Objects created with class</h1>
35+
<p>Total Objects: 10_000_00 (1 million)</p>
36+
<img src="./images/class-objects.png" alt="" />
37+
</div>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)