Tide v2 Update
This commit is contained in:
parent
0d7b411ce0
commit
d707923f17
3670
cookie-clicker.html
Normal file
3670
cookie-clicker.html
Normal file
File diff suppressed because it is too large
Load Diff
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 471 KiB |
36
games.html
Normal file
36
games.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Tide - Games</title>
|
||||||
|
<link rel="stylesheet" href="style (2).css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="title">Tide Games</h1>
|
||||||
|
<div id="game-options">
|
||||||
|
<!-- Game options (buttons) -->
|
||||||
|
<button class="game-btn" onclick="openGame('cookie-clicker.html')">Cookie Clicker</button>
|
||||||
|
<button class="game-btn" onclick="openGame('tomb-of-the-mask.html')">Tomb of the Mask</button>
|
||||||
|
<button class="game-btn" onclick="openGame('timeshooter2.html')">Time Shooter 2</button>
|
||||||
|
<!-- Add more game buttons as needed -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Back to Tide Button -->
|
||||||
|
<button class="back-btn" onclick="goBackToTide()">Back to Tide</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Function to open the game in a new tab
|
||||||
|
function openGame(gameFile) {
|
||||||
|
window.open(gameFile, '_blank');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Function to go back to the Tide index page
|
||||||
|
function goBackToTide() {
|
||||||
|
window.location.href = 'index (4).html';
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
30
index (4).html
Normal file
30
index (4).html
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Tide</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||||
|
<link rel="stylesheet" href="style (2).css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="loader" class="loader">Loading Tide...</div>
|
||||||
|
<div class="container" id="content" style="display: none;">
|
||||||
|
<h1 class="title">Tide<span class="dot">.</span></h1>
|
||||||
|
<form id="searchForm">
|
||||||
|
<input type="text" id="urlInput" placeholder="Where do you want to go?" autocomplete="off">
|
||||||
|
<div class="options">
|
||||||
|
<label><input type="checkbox" id="blankMode"> Stealth (about:blank)</label>
|
||||||
|
</div>
|
||||||
|
<button type="submit">Surf 🌊</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<!-- New Button for the Games Page -->
|
||||||
|
<div>
|
||||||
|
<button id="play-games" onclick="window.location.href='games.html';">Play Games 🎮</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="script (1).js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
114
style (2).css
Normal file
114
style (2).css
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
|
||||||
|
color: #fff;
|
||||||
|
font-family: 'Poppins', sans-serif;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
text-align: center;
|
||||||
|
animation: fadeIn 2s ease forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 4rem;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dot {
|
||||||
|
color: #00bcd4;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"] {
|
||||||
|
padding: 12px;
|
||||||
|
width: 300px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 25px;
|
||||||
|
background: #2b2b2b;
|
||||||
|
color: white;
|
||||||
|
font-size: 1rem;
|
||||||
|
outline: none;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"]:focus {
|
||||||
|
background: #383838;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
margin-top: 15px;
|
||||||
|
padding: 10px 30px;
|
||||||
|
font-size: 1rem;
|
||||||
|
border: none;
|
||||||
|
border-radius: 25px;
|
||||||
|
background: #00bcd4;
|
||||||
|
color: black;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
background: #00a2b0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.options {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader {
|
||||||
|
font-size: 2rem;
|
||||||
|
color: #00bcd4;
|
||||||
|
animation: pulse 2s infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Style for game buttons in games.html */
|
||||||
|
.game-btn {
|
||||||
|
margin-top: 20px;
|
||||||
|
padding: 12px 35px;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
background: #4caf50; /* Green background */
|
||||||
|
color: white;
|
||||||
|
font-weight: 700;
|
||||||
|
border-radius: 25px;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.game-btn:hover {
|
||||||
|
background: #45a049; /* Darker green when hovered */
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(20px);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulse {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user