-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (97 loc) · 4 KB
/
index.html
File metadata and controls
108 lines (97 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Useless Project</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background-color: #000;
color: #ff69b4;
font-family: 'Press Start 2P', cursive;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
margin-bottom: 30px;
font-size: 2.5em;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid #ff69b4;
animation: blink 0.75s step-end infinite;
}
@keyframes blink {
50% {
border-color: transparent;
}
}
.button {
background-color: #333;
color: #ff69b4;
border: 2px solid #ff69b4;
padding: 15px 30px;
text-align: center;
font-size: 1.5em;
margin: 10px 0;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.button:hover {
background-color: #ff69b4;
color: #000;
}
</style>
</head>
<body id="bg1">
<h1 id="typing-header"></h1>
<div>
<a href="pookie.html"> <button class="button">Yes & NO</button></a>
<a href="car.html"> <button class="button">Car game</button></a>
<a href="pepe-dino.html"> <button class="button">Pepe's Adventure</button></a>
<a href="story.html"><button class="button">Story teller</button></a>
<a href="tic.html"><button class="button">Tic-Tac-Toe</button></a>
<a href="url.html"><button class="button">Try URL</button></a>
<a href="time.html"><button class="button">Wanna waste time?</button></a>
<a href="cat.html"><button class="button">Talk to your cat</button> </a>
<a href="doggo.html"><button class="button">DoggoGPT</button></a>
<a href="pa.html"><button class="button">Mr Painter</button></a>
<a href="bubble.html"><button class="button">Bubble ain't got feelings?</button></a>
<a href="ki.html"><button class="button">Shower some Kindness!</button></a>
<a href="lc.html"><button class="button">Adore-o-Meter</button></a>
<a href="cl.html"><button class="button">DREAMING 'BOUT A CALCULATOR? COME ON!! STILL EXCITED ??...I GOT YOUR BACK</button></a>
</div>
<!-- scri[pt] -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.halo.min.js"></script>
<script>
VANTA.HALO({
el: "#bg1",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
backgroundColor: 0x0
})
// <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script>
const headerText = "Useless Projects!";
const typingHeader = document.getElementById("typing-header");
let index = 0;
function type() {
if (index < headerText.length) {
typingHeader.innerHTML += headerText.charAt(index);
index++;
setTimeout(type, 100);
}
}
type();
</script>
</body>
</html>