Skip to content

Commit

Permalink
Update LinuxOnUSB.html
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityJammyyy authored Feb 2, 2024
1 parent a2ac267 commit b931a30
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions LinuxOnUSB.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@
<body style=" max-width: 8.5in; margin: 0.7874in; background-color: teal; width: 1000px; height: 610px;"

dir="ltr">

<!-- The Clock that will probably break the entire website :( -->

<div id="clock"></div>

<script>
function updateClock() {
const now = new Date();
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
const timeString = `${hours}:${minutes}:${seconds}`;
document.getElementById('clock').textContent = timeString;
}

// Update the clock every second
setInterval(updateClock, 1000);

// Initial call to display the clock immediately
updateClock();
</script>

<!-- End Clock -->

<h1 style=" width: 1000px;">Linux on a USB stick with MKUsb.</h1>
<p>Using MKUsb you can grab a Ubuntu OS or Debian OS and install it on an
external Usb/SSD drive this only works with the two OS's however I have
Expand Down

0 comments on commit b931a30

Please sign in to comment.