Skip to content

Commit

Permalink
Add first files
Browse files Browse the repository at this point in the history
  • Loading branch information
cnnrbrn committed Aug 9, 2020
0 parents commit d4a8314
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript 1 MA 1</title>
</head>
<body>

<h3>Heading</h3>

<p>Lorem</p>
<p>Ipsum</p>
<p>Dolor</p>

<div class="results"></div>

<div class="cat-container"></div>

<script src="js/script.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const cats = [
{
name: "Blob",
age: 10
},
{
name: "Harold",
},
{
name: "Blurt",
age: 21
}
];

0 comments on commit d4a8314

Please sign in to comment.