Skip to content

Commit

Permalink
core functionality ready
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyHubert committed Jul 13, 2024
1 parent 2914ad1 commit 27cce1f
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion abi/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
body {
font-size: 20px;
font-size: 50px;
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<body>

<div><a href="https://laughing-lamp-jjg7rjr495w35xwv.github.dev/" target="_blank">Code</a></div>
<div><a href="/abi" target="_blank">View Abi</a></div>
<div><a href="/yoseph" target="_blank">View Yoseph</a></div>
<div><a href="/sarah" target="_blank">View Sarah</a></div>
<div><a href="/abi">View Abi</a></div>
<div><a href="/yoseph">View Yoseph</a></div>
<div><a href="/sarah">View Sarah</a></div>

</body>
</html>
9 changes: 9 additions & 0 deletions sarah/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<html>
<head>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
</head>
<body>
Sarah!
</body>
</html>
3 changes: 3 additions & 0 deletions sarah/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
font-size: 50px;
}
4 changes: 4 additions & 0 deletions sarah/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
setTimeout(
() => alert('Sarah working'),
1000*2
)
3 changes: 2 additions & 1 deletion yoseph/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<html>
<head>

<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
</head>
<body>
Yoseph!
Expand Down
3 changes: 3 additions & 0 deletions yoseph/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
font-size: 50px;
}
4 changes: 4 additions & 0 deletions yoseph/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
setTimeout(
() => alert('Yoseph working'),
1000*2
)

0 comments on commit 27cce1f

Please sign in to comment.