we have a new website and it is so good :_)
This commit is contained in:
parent
1bf90caeec
commit
0d22997aa5
111 changed files with 702 additions and 9564 deletions
101
website/NotNet.html
Normal file
101
website/NotNet.html
Normal file
|
@ -0,0 +1,101 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<title>NotNet</title>
|
||||
<link rel="icon" type="image/png" href="https://n2.pm/favicon.png">
|
||||
<!-- css go yoink -->
|
||||
<!-- notnite was here 08/07/21 -->
|
||||
<!-- notnite was here 10/31/21 -->
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Unifont";
|
||||
src: local("Unifont"), url(unifont-13.0.06.ttf) format("truetype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#shit {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
body {
|
||||
color: white;
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.monospace {
|
||||
font-family: Unifont, monospace;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.big {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.r {
|
||||
color: #cb2027;
|
||||
}
|
||||
|
||||
.b {
|
||||
color: #4b3b97;
|
||||
}
|
||||
|
||||
.server {
|
||||
color: #ffd700;
|
||||
}
|
||||
|
||||
.link {
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>
|
||||
<a href = "/juliancreditpl2sdonotsteal">Go To The Originals...</a>
|
||||
</h1>
|
||||
<div id="shit">
|
||||
<pre class="monospace big"><span class="r">█▀▄ ▄ </span><span class="b">█▀▄ ▄ ▄ </span><span class="r"> ▄▄ </span>
|
||||
<span class="r">█ █ ▄▀▄ ▀█▀ </span><span class="b">█ █ █▄█ ▀█▀ </span><span class="r">█▄</span><span class="b">▀█</span>
|
||||
<span class="r">█ █ ▀▄▀ █ </span><span class="b">█ █ ▀▄▄ █ </span><span class="b"> ▀▀ </span>
|
||||
</pre>
|
||||
<pre class="monospace">Welcome to <span class="r">Not</span><span class="b">Net</span>.
|
||||
|
||||
We host:
|
||||
<a class="r link" href="https://exitplan.petoria.land/">[exitplan]</a>
|
||||
<a class="r link" href="https://petoria.land/">[republic of petoria]</a>
|
||||
<a class="r link" href="https://tshnn.com/">[tshnn services]</a>
|
||||
<a class="r link" href="https://coolmathgam.es/">[coolmathgam.es]</a>
|
||||
|
||||
on:
|
||||
<a class="server link" href="https://soulja-boy-told.me/">[lmaobox]</a> - Virginia, USA
|
||||
<a class="server link" href="https://n2.pm/">[sevenoneone]</a> - Helsinki, Finland
|
||||
|
||||
by:
|
||||
<a class="link" style="color: #cb2027;" href="https://notnite.com/">[NotNite]</a>
|
||||
<a class="link" style="color: #00ffbb;" href="https://miskeeping.com/">[naku]</a>
|
||||
<a class="link" style="color: #79bcda;" href="https://adryd.com/">[adryd]</a>
|
||||
<a class="link" style="color: #2ab5c6;" href="https://coolmathgames.tech/">[Mary]</a>
|
||||
<a class="link" style="color: #d75622;" href="https://j4.pm/">[jane]</a>
|
||||
<a class="link" style="color: #ee82ee;" href="https://i-fucking-hate.ninja/">[gh]</a></pre>
|
||||
</div>
|
||||
|
||||
|
||||
</body></html>
|
21
website/crab.js
Normal file
21
website/crab.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
const crab = () => {
|
||||
let audio = document.createElement("audio");
|
||||
audio.autoplay = "true";
|
||||
audio.loop = "true";
|
||||
let source = document.createElement("source");
|
||||
source.src = "crab.mp3";
|
||||
audio.appendChild(source);
|
||||
|
||||
let random = Math.floor(Math.random() * 35);
|
||||
let boy = document.querySelector("body");
|
||||
|
||||
for (let i = 0; i < random; i++) {
|
||||
let crab = document.createElement("h3");
|
||||
crab.innerText = "🦀";
|
||||
crab.className = "crab";
|
||||
crab.style = `z-index: -3; left: ${Math.floor(Math.random() * 100)}vw; animation-duration: ${Math.random() * 10}s; animation-delay: 0s;`
|
||||
boy.appendChild(crab);
|
||||
}
|
||||
|
||||
boy.appendChild(audio);
|
||||
}
|
BIN
website/crab.mp3
Normal file
BIN
website/crab.mp3
Normal file
Binary file not shown.
155
website/index.html
Normal file
155
website/index.html
Normal file
|
@ -0,0 +1,155 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<title>Jane's Original Website DO Not Steal</title>
|
||||
<link rel="icon" type="image/png" href="https://n2.pm/favicon.png">
|
||||
<script src="./name.js"></script>
|
||||
<script src="./crab.js"></script>
|
||||
<!-- css go yoink -->
|
||||
<!-- notnite was here 08/07/21 -->
|
||||
<!-- notnite was here 10/31/21 -->
|
||||
<!-- notlite was watching me write this 04/01/22 -->
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: "Unifont";
|
||||
src: local("Unifont"), url(unifont-13.0.06.ttf) format("truetype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.nobreak {
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
width: 100vw !important;
|
||||
height: 100vh !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@keyframes crab {
|
||||
from {
|
||||
top: -100vh
|
||||
}
|
||||
|
||||
to {
|
||||
top: 120vh
|
||||
}
|
||||
}
|
||||
|
||||
.crab {
|
||||
position: relative;
|
||||
display: flex;
|
||||
font-size: 9vh;
|
||||
padding: 1vh;
|
||||
line-height: 1;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
|
||||
animation-name: crab;
|
||||
animation-fill-mode: backwards;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
#shit {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
body {
|
||||
color: white;
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.monospace {
|
||||
font-family: Unifont, monospace;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.big {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.r {
|
||||
color: #cb2027;
|
||||
}
|
||||
|
||||
.b {
|
||||
color: #4b3b97;
|
||||
}
|
||||
|
||||
.server {
|
||||
color: #ffd700;
|
||||
}
|
||||
|
||||
.link {
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body onclick="crab()">
|
||||
<div id="shit">
|
||||
<pre class="monospace big"><span class="r">█▀▄ ▄ </span><span class="b">█▀▄ ▄ ▄ </span><span class="r"> ▄▄ </span>
|
||||
<span class="r">█ █ ▄▀▄ ▀█▀ </span><span class="b">█ █ █▄█ ▀█▀ </span><span class="r">█▄</span><span class="b">▀█</span>
|
||||
<span class="r">█ █ ▀▄▀ █ </span><span class="b">█ █ ▀▄▄ █ </span><span class="b"> ▀▀ </span>
|
||||
</pre>
|
||||
<p>cock penis not a stole n website</p>
|
||||
<br />
|
||||
<div>
|
||||
<h3 class="nobreak">jane</h3>
|
||||
<span class="nobreak" id="name"></span>
|
||||
<h3 class="nobreak">petrovna | jane#0009</h3>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<a href="https://github.com/janeptrv">
|
||||
<b>github</b>
|
||||
</a>
|
||||
<a href="https://gitlab.com/janeptrv">
|
||||
<b>gitlab</b>
|
||||
</a>
|
||||
<a href="https://gitdab.com/jane">
|
||||
<b>gitdab</b>
|
||||
</a>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<div class="xsd">
|
||||
<div class="hard core gamer">
|
||||
<br />
|
||||
<p>BIG LINKS</p> <br /> <br /> <br />
|
||||
<a href="https://notnite.com"> <img alt="notnites page" src="images/cooldick.gif"> </a> <br />
|
||||
<a href="https://n2.pm"> <img alt="not a stolen website" src="images/cooldick.gif"> </a> <br />
|
||||
<a href="https://coolmathgames.tech"> <img alt="Mary's Site" src="images/maryhouse.png"></a> <br />
|
||||
<a href="https://e2.pm"> <img alt="eernin" src="images/e2.png"> </a> <br />
|
||||
<a href="https://cables.j4.pm/"> <img alt="free cables" src="images/cables.gif" width="88" height="31">
|
||||
</a> <br />
|
||||
<a href="http://weed4lif.getenjoyment.net//"> <img alt="weed4lif" src="images/weed4lif.png" width="88"
|
||||
height="31"> </a> <br />
|
||||
<a href="https://yang-63-official.biz/"> <img alt="YANG63" src="images/yang63.gif" width="88"
|
||||
height="31"> </a> <br />
|
||||
<a href="https://i-fucking-hate.ninja/">
|
||||
<div width="88" height="31">Goast</div>
|
||||
</a> <br />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
47
website/name.js
Normal file
47
website/name.js
Normal file
|
@ -0,0 +1,47 @@
|
|||
const names = [
|
||||
"sunset",
|
||||
"luna",
|
||||
"valerie",
|
||||
"bonnie",
|
||||
"artemis",
|
||||
"diana",
|
||||
"constanze",
|
||||
"twilight",
|
||||
"bianca",
|
||||
"dawn",
|
||||
"rosa",
|
||||
"akemi",
|
||||
];
|
||||
|
||||
function getNextName(current) {
|
||||
let index = Math.floor(Math.random() * names.length);
|
||||
//console.log(current, names[index])
|
||||
if (names[index] === current) {
|
||||
return getNextName(current);
|
||||
}
|
||||
return names[index];
|
||||
}
|
||||
|
||||
function constructNewElement(currentName, nameElement) {
|
||||
let newName = document.createElement("h3");
|
||||
newName.setAttribute("id", "scroll");
|
||||
newName.innerText = getNextName(currentName);
|
||||
nameElement.appendChild(newName);
|
||||
}
|
||||
|
||||
function constructNameElement() {
|
||||
let nameElement = document.querySelector("#name");
|
||||
//console.log(nameElement)
|
||||
constructNewElement("", nameElement);
|
||||
setInterval(() => {
|
||||
let firstChild = nameElement.firstChild;
|
||||
let currentName = firstChild.innerText;
|
||||
//console.log(firstChild, currentName)
|
||||
constructNewElement(currentName, nameElement);
|
||||
firstChild.remove();
|
||||
}, 60000);
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
constructNameElement();
|
||||
});
|
BIN
website/unifont-13.0.06.ttf
Normal file
BIN
website/unifont-13.0.06.ttf
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue