Skip to content
This repository was archived by the owner on Oct 1, 2019. It is now read-only.
Open
Changes from 1 commit
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
Prev Previous commit
made font easier to read
  • Loading branch information
Wash committed Oct 30, 2018
commit 5302fe2bf337f96c7dae696cace4870316e6a1d3
19 changes: 17 additions & 2 deletions the_internet.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,27 @@
color: green;
}

.the-internet-wrapper {
display: grid;
align-items: center;
height: 100%;
}

.the-internet {
width: 100%;
text-align: center;
font-family: 'Courier New', Courier, monospace;
font-size: xx-large;
}

</style>

<head>

<script type="text/javascript">
function randString(len) {
"use strict";
var i, out="", all ="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
var i, out="", all ="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
for (i = 0; i < len; i++) {
out += all.charAt(Math.floor(Math.random() * all.length));
}
Expand All @@ -35,7 +48,9 @@
</head>

<body class="background text-color">
<div id="text">THE INTERNET</div>
<div class="the-internet-wrapper">
<div id="text" class="the-internet">THE INTERNET</div>
</div>
</body>

</html>