HI!
Search for GIFs on google
download one.
Uplad it where you want
Enjoy!
How to add moving text
go to ebed
put in this text: <html><body><marquee style="border:transparent 3px solid" direction="left" font style="russo one" scrolldelay="100"><font size="9" face="Russo one"><font color="#FFFFFF">Hi people! </marquee>
Enjoy!
Search "241543903" on Google and you will find pics of people sticking their heads in refrigerators.
Not a joke, I actually did this.
Get switch
buy the game
watch video while playing the game
CSS Responsive Accordion
Create a responsive accordion component that expands and collapses sections of content, enhancing content organization and user interaction.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Accordion</title>
<style>
.accordion {
width: 100%;
max-width: 600px;
margin: 20px auto;
}
.accordion-item {
border-bottom: 1px solid #ddd;
}
.accordion-header {
background-color: #f4f4f4;
padding: 15px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.accordion-header:hover {
background-color: #e2e2e2;
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 15px;
}
.accordion-content p {
margin: 15px 0;
}
.accordion-item.active .accordion-content {
max-height: 200px;
}
</style>
</head>
<body>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-header">Section 1</div>
<div class="accordion-content">
<p>Content for section 1.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header">Section 2</div>
<div class="accordion-content">
<p>Content for section 2.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header">Section 3</div>
<div class="accordion-content">
<p>Content for section 3.</p>
</div>
</div>
</div>
<script>
const items = document.querySelectorAll('.accordion-header');
items.forEach(item => {
item.addEventListener('click', () => {
const parent = item.parentElement;
parent.classList.toggle('active');
const content = item.nextElementSibling
::contentReference[oaicite:8]{index=8}
CSS 3D Cube Animation
Create a rotating 3D cube using CSS animations and transforms, providing an interactive visual effect.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Cube Animation</title>
<style>
.scene {
width: 200px;
height: 200px;
perspective: 600px;
}
.cube {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
transform: rotateX(-30deg) rotateY(-45deg);
animation: rotate 5s infinite linear;
}
.face {
position: absolute;
width: 200px;
height: 200px;
background: rgba(255, 255, 255, 0.9);
border: 2px solid #ccc;
}
.front { transform: translateZ(100px); }
.back { transform: rotateY(180deg) translateZ(100px); }
.right { transform: rotateY(90deg) translateZ(100px); }
.left { transform: rotateY(-90deg) translateZ(100px); }
.top { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }
@keyframes rotate {
from { transform: rotateX(-30deg) rotateY(-45deg); }
to { transform: rotateX(-30deg) rotateY(315deg); }
}
</style>
</head>
<body>
<div class="scene">
<div class="cube">
<div class="face front">Front</div>
<div class="face back">Back</div>
<div class="face right">Right</div>
<div class="face left">Left</div>
<div class="face top">Top</div>
<div class="face bottom">Bottom</div>
</div>
</div>
</body>
</html>
CSS Sticky Footer
Create a footer that sticks to the bottom of the page, ensuring it remains in place regardless of the content length.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sticky Footer</title>
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
.content {
flex: 1;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<div class="content">
<!-- Main content goes here -->
</div>
<div class="footer">
Sticky Footer Content
</div>
</body>
</html>
FOR MORE CHECK OUT THE LINK UNDER THIS TEXT BOX.