101 lines
2.6 KiB
HTML
101 lines
2.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Welcome to FumbleAround</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
min-height: 100vh;
|
||
|
margin: 0;
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
background: linear-gradient(135deg, #ff4500 0%, #ff6b4a 100%);
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 600px;
|
||
|
padding: 40px;
|
||
|
background: rgba(255, 255, 255, 0.1);
|
||
|
border-radius: 20px;
|
||
|
backdrop-filter: blur(10px);
|
||
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 2.5em;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
width: 120px;
|
||
|
height: 120px;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 1.2em;
|
||
|
line-height: 1.6;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.instructions {
|
||
|
font-size: 1.1em;
|
||
|
background: rgba(255, 255, 255, 0.2);
|
||
|
padding: 20px;
|
||
|
border-radius: 10px;
|
||
|
margin-top: 30px;
|
||
|
}
|
||
|
|
||
|
.shake-icon {
|
||
|
font-size: 2em;
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 768px) {
|
||
|
body {
|
||
|
padding: 15px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 1em;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<img src="./Assets/smily.png" alt="FumbleAround Logo" class="logo">
|
||
|
<h1>Welcome to FumbleAround!</h1>
|
||
|
<p>Ready to explore the hidden gems of the internet? FumbleAround helps you discover interesting websites you might never find otherwise.</p>
|
||
|
<p>Click the "Fumble!" button or use the shake gesture on mobile to start your journey.</p>
|
||
|
|
||
|
<div class="instructions">
|
||
|
<p>💡 <strong>Pro Tips:</strong></p>
|
||
|
<p>🌙 Toggle dark mode for comfortable browsing</p>
|
||
|
<p>📱 On mobile, shake your device to fumble!</p>
|
||
|
<div class="shake-icon">📱↔️</div>
|
||
|
<p>❓ Check the help section for more information</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|