Skip to content

Fixes #24 Added chance of meatballs #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Pasta/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,14 @@
<h1>Pasta</h1>
<p class="fs-5 col-md-8">Students eat a lot of it</p>


<marquee id="main"></marquee>

<script>
if(Math.random() > 0.5) {
document.getElementById("main").innerHTML = "Meatballs";
console.log("Meatballs");
}
</script>
</main>
<footer class="pt-5 my-5 text-muted border-top">
Created in part by the Bootstrap team &middot; &copy; 2022
Expand Down
4 changes: 3 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Pasta pasta pasta
Pasta pasta pasta
Forked
Fixed