Files
PINK-NODDERS/index.html
T
2024-04-25 11:27:33 -07:00

37 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PINK NODDERS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="emote-container">
<img src="pink-nodders.gif" alt="PINK NODDERS" class="emote NOCLONE rotneon">
<!-- <div class="caption">PINK NODDERS</div> -->
</div>
<div id="cherryBlossomPopup" class="popup">
<div class="popup-content">
<button class="close-btn" onclick="document.getElementById('cherryBlossomPopup').style.display = 'none'">X</button>
<h2>Cherry Blossom Popup</h2>
<input type="number" placeholder="HOW MANY PINK NODDERS">
<div class="button-group">
<button class="theme-button" onclick="changeNodders()">CHANGE NODDERS</button>
<button class="theme-button" onclick="dupNodders()">DUPLICATE NODDERS</button>
<button class="theme-button" onclick="changeBK()">BACKGROUND NODDERS</button>
</div>
</div>
</div>
<div id="fullscreenTextContainer">
<h1>I N S A N I T Y</h1>
</div>
<script src="script.js"></script>
</body>
</html>