129 lines
3.4 KiB
HTML
129 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>NONSTOPWORLD</title>
|
|
<link rel="stylesheet" href="./assets/css/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="center">
|
|
<img
|
|
class="logo"
|
|
src="./assets/images/NSW2-LOGO-NEW.png"
|
|
alt="@ NonStopPup presents NONSTOPWORLD 2"
|
|
/>
|
|
<img
|
|
class="subtext"
|
|
src="./assets/images/NSW2-SUBTEXT.png"
|
|
alt="THE SECOND ANNUAL MASSIVE ONLINE FURRY CONVENTION AND THE HISTORY, ART, CULTURE, & INFLUENCE OF THE FURRY FANDOM"
|
|
/>
|
|
<br />
|
|
|
|
<div class="ip" onclick="copyIP('ip1')">
|
|
<img src="./assets/images/new/ip address.png" alt="" />
|
|
</div>
|
|
<div class="ip" onclick="copyIP('ip2')">
|
|
<img src="./assets/images/new/issues.png" alt="" />
|
|
</div>
|
|
|
|
<div class="buttons">
|
|
<div id="discord">
|
|
<a href="https://discord.gg/tzxXz5D">
|
|
<img src="./assets/images/new/discord.png" alt="" class="button" />
|
|
</a>
|
|
</div>
|
|
|
|
<div id="audio_stream">
|
|
<a href="https://mixlr.com/nonstopworld2"
|
|
><img
|
|
src="./assets/images/new/audio_stream.png"
|
|
alt=""
|
|
class="button"
|
|
/></a>
|
|
</div>
|
|
|
|
<div id="vip">
|
|
<a href="https://forms.gle/7RequadVcZM344po8">
|
|
<img src="./assets/images/new/vip.png" alt="" class="button" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<br /><br />
|
|
|
|
<div class="times">
|
|
<img src="./assets/images/new/nsw2djposter_SATURDAY.jpg" alt="" />
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
<img
|
|
class="webdate"
|
|
src="./assets/images/NSFW2-DATE.png"
|
|
alt="JULY 18-19 on nonstop.world"
|
|
/>
|
|
<br />
|
|
<br />
|
|
<img
|
|
src="./assets/images/NSW2-VIP_NOTICE-NEW.png"
|
|
alt="$5 VIP TICKETS AVAILABLE FOR SPECIAL WORLD AREA ACCESS. ALL TICKET SALES DONATED TO DIRECT RELIEF COVID-19 & NAACP LEGAL DEFENSE FUND"
|
|
class="note"
|
|
/>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
<br />
|
|
|
|
<p id="credits">
|
|
<span class="design">WEB DESIGN:<br /></span>
|
|
<a href="https://twitter.com/NONSTOPPUP" target="_blank">NONSTOPPUP</a>
|
|
| <a href="https://twitter.com/drazzrd" target="_blank">DRAZ</a> |
|
|
<a href="https://twitter.com/louiedanook" target="_blank">LOUIE OTT.</a>
|
|
<br />
|
|
<span class="dev">WEB DEV:</span>
|
|
<a href="https://twitter.com/hokkqi" target="_blank">HOKKQI</a>
|
|
</p>
|
|
</div>
|
|
<input
|
|
style="display: none;"
|
|
type="text"
|
|
value="mc.nonstop.world"
|
|
id="ip1"
|
|
/>
|
|
<input
|
|
style="display: none;"
|
|
type="text"
|
|
value="mc2.nonstop.world"
|
|
id="ip2"
|
|
/>
|
|
<div id="snackbar">Copied IP to clipboard!</div>
|
|
<script>
|
|
function copyIP(ip) {
|
|
console.log("Trying to copy IP");
|
|
console.log(ip);
|
|
let copyText = document.getElementById(`${ip}`);
|
|
//console.log(copyText);
|
|
|
|
copyText.select();
|
|
copyText.setSelectionRange(0, 99999); /*For mobile devices*/
|
|
|
|
document.execCommand("copy");
|
|
|
|
// incase that failed
|
|
|
|
if (navigator.clipboard) {
|
|
navigator.clipboard.writeText(copyText.value);
|
|
}
|
|
|
|
var x = document.getElementById("snackbar");
|
|
x.className = "show";
|
|
setTimeout(function () {
|
|
x.className = x.className.replace("show", "");
|
|
}, 3000);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|