Html codes
184 subscribers
111 photos
15 videos
226 files
197 links
👋 Welcome to Html Codee
🚀 Here you’ll find mini tools, code snippets, and web tricks to grow fast.
🧩 Built with HTML, PHP, and smart ideas.
💌 Support: support@bestpage.x10.mx
🏁 If you don't walk today, run tomorrow.
Download Telegram
Forwarded from GOAL24
Face Animator - animate faces🥸📸

A service that will animate any photo and give it a whole range of emotions. 🥳 Upload a photo, choose a reaction from our library - and voila, instead of an ordinary photo you will get a dynamic, expressive video! 🥹


🎥 #VideoAI
📸 #PhotoAI
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🆒5
<html>
<head>
<title>
New Year Countdown 2025
</title>
<script src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js" type="module">
</script>
<script nomodule="" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js">
</script>
<link href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" rel="stylesheet"/>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap" rel="stylesheet"/>
<style>
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body class="bg-gray-100 flex flex-col items-center justify-center min-h-screen">
<ion-header class="w-full">
<ion-toolbar color="primary">
<ion-title class="text-center">
New Year Countdown 2025
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="w-full flex flex-col items-center justify-center">
<div class="text-center mt-10">
<h1 class="text-4xl font-bold mb-4">
Countdown to 2025
</h1>
<div class="text-2xl font-semibold" id="countdown">
<span id="days">
0
</span>
Days
<span id="hours">
0
</span>
Hours
<span id="minutes">
0
</span>
Minutes
<span id="seconds">
0
</span>
Seconds
</div>
</div>
<div class="mt-10">
<img alt="A festive New Year celebration with fireworks and a clock showing midnight" class="rounded-lg shadow-lg" height="400" src="https://storage.googleapis.com/a1aa/image/IElyCaYvrwKSAZ6d5xoW6hyUHA2WGE86devUbfVGXuC8vafnA.jpg" width="600"/>
</div>
</ion-content>
<script>
function updateCountdown() {
const newYear = new Date('January 1, 2025 00:00:00').getTime();
const now = new Date().getTime();
const distance = newYear - now;

const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);

document.getElementById('days').innerText = days;
document.getElementById('hours').innerText = hours;
document.getElementById('minutes').innerText = minutes;
document.getElementById('seconds').innerText = seconds;

if (distance < 0) {
clearInterval(countdownInterval);
document.getElementById('countdown').innerText = "Happy New Year!";
}
}

const countdownInterval = setInterval(updateCountdown, 1000);
</script>
<script type="module">
import ionicons from 'https://cdn.jsdelivr.net/npm/ionicons/+esm'
</script>
<script nomodule="" src="https://cdn.jsdelivr.net/npm/ionicons/dist/esm/ionicons.min.js">
</script>
<link href="https://cdn.jsdelivr.net/npm/ionicons/dist/collection/components/icon/icon.min.css" rel="stylesheet"/>
</body>
</html>
👍4
smart_iot_dashboard.html
4.8 KB
📊 Features:

Interactive Device Controls: Toggle Lights, Fan, and Security System.
Temperature Adjustment: Use a slider to control temperature.
Real-time Status Updates: Display real-time status messages.
Visual Feedback: Indicators show device states.
Responsive Design: Mobile and desktop friendly.

@Html_codee
Attention, Question of the Day...
QUESTION:
In the past, the weight of THIS(!) would be around 200 grams at the beginning of the New Year...
As the year progresses and reaches its end in December, it loses a significant amount of weight, dropping to about 20 grams.
Nowadays, THIS(!) can be found on most people's phones...
Question:
What is THIS(!)?
(One word!)
2
What is the default display property of <div>?
Anonymous Quiz
40%
block
30%
inline
30%
flex
What does the <iframe> tag do?
Anonymous Quiz
50%
Embeds content
33%
Creates frames
17%
Loads media
What codes are needed?
Happy New Year! 🎉

I sincerely congratulate you with the coming New Year!
🎄 May the new year bring you new dreams, new hopes and new opportunities. May your achievements in the past year be stronger, and may the new year be remembered with new victories. I wish you good health, family happiness, peace and blessings. Happy New Year!
Why is a computer mouse called a mouse?

The "mouse" 🐭 got its name from its resemblance to the actual animal the mouse and had a cord trailing behind it much like a mouse's tail. It was to small to be a rat. However a "rat" is an old term which refers to damaged or obsolete hardware or malicious software... We often referred to viruses and malware as rats 🐀 🐀 🐁
minesweeper game.html
9 KB
minesweeper game.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Mini Blog</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" />
<style>
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body class="bg-gray-100">
<div class="container mx-auto">
<header class="bg-blue-600 p-4">
<h1 class="text-white text-2xl">Mini Blog</h1>
</header>
<main class="p-4">
<div class="grid grid-cols-1 gap-4" id="blogPosts">
</div>
</main>
</div>

<script>
const blogPosts = [
{
image: "https://storage.googleapis.com/a1aa/image/U9MFSPdORsrsJ5qZ8Ah5e4a5fdf14d89enNNGW2rhQqSBIIQB.jpg",
title: "Exploring the Mountains",
description: "Join us as we explore the beautiful mountain ranges and discover the hidden gems within.",
likes: 0,
comments: [],
},
{
image: "https://storage.googleapis.com/a1aa/image/QjfoDwsfmZuiEUqTFrHZ1sKbzYWEDn8a9uNN9xqUyfggAEEoA.jpg",
title: "City Life Adventures",
description: "Experience the vibrant life of the city with our guide to the best spots and activities.", likes: 0,
comments: [],
},
{
image: "https://storage.googleapis.com/a1aa/image/3c1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e.jpg",
title: "Culinary Delights",
description: "Discover the flavors of the world with our culinary adventures and recipes.",
likes: 0,
comments: [],
},
];

function renderPosts() {
const blogContainer = document.getElementById('blogPosts');
blogContainer.innerHTML = '';

blogPosts.forEach((post, index) => {
const postDiv = document.createElement('div');
postDiv.className = 'bg-white p-4 rounded-lg shadow-md';
postDiv.innerHTML = `
<img src="${post.image}" alt="${post.title}" class="w-full h-48 object-cover rounded-t-lg" />
<h2 class="text-xl font-bold mt-4">${post.title}</h2>
<p class="text-gray-700 mt-2">${post.description}</p>
<div class="flex justify-between items-center mt-4">
<button class="text-blue-600 hover:text-blue-800" onclick="likePost(${index})">
<i class="fas fa-thumbs-up"></i> Like <span id="likeCount-${index}">(${post.likes})</span>
</button>
<button class="text-blue-600 hover:text-blue-800" onclick="commentPost(${index})">
<i class="fas fa-comment"></i> Comment
</button>
<button class="text-blue-600 hover:text-blue-800" onclick="sharePost(${index})">
<i class="fas fa-share"></i> Share
</button>
</div>
`;
blogContainer.appendChild(postDiv);
});
}

function likePost(index) {
blogPosts[index].likes++;
renderPosts();
}

function commentPost(index) {
const comment = prompt("Enter your comment:");
if (comment) {
blogPosts[index].comments.push(comment);
alert("Comment added!");
}
}

function sharePost(index) {
alert(`Sharing post: ${blogPosts[index].title}`);
}

renderPosts();
</script>
</body>
</html>
Hi there! How can I help you today?
SQUID game web sitesi .html
4.4 KB
SQUID game web sitesi .html
SQUID game mini games web sitesi .html
5.3 KB
SQUID game mini games web sitesi .html