Html codes
184 subscribers
112 photos
15 videos
226 files
198 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
Professions That Will Survive the Future 🌟

As technology advances, some careers will continue to thrive due to their unique human skills and touch. Here are professions expected to stay relevant for years to come:

1. Programmers and IT Specialists πŸ’»
Creating and advancing technology requires skilled developers who can innovate and maintain complex systems.

2. Healthcare Workers (Doctors and Nurses) 🩺
The human touch is essential in healthcare; AI and robots can’t fully replace the compassion and intuition needed for patient care.

3. Teachers and Educators πŸ“š
Teaching goes beyond knowledge transfer; it involves motivation, mentorship, and guidance.

4. Artists, Designers, and Creative Professionals 🎨
Creativity and art rely on human emotions and personal expression, making these roles irreplaceable.

5. Authors and Writers ✍️
While AI can help generate content, true storytelling and deep human insights will always require a human touch.

6. Psychologists and Therapists 🧠
Addressing mental health and emotional issues requires genuine human interaction and empathy.

7. Engineers and Technical Experts πŸ—οΈ
Engineering solutions and technical problem-solving require creative and hands-on thinking that AI can’t replicate entirely.

8. Social Service Workers 🀝
Social care and support are deeply human activities that require understanding, empathy, and human connection.

Even with the rise of new technologies, these professions are expected to remain valuable and in demand. 🌍✨

Follow for more insights on the future of work and tech updates: @Html_codee
What post Do you want me to throw?
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ‡ΊπŸ‡Έ US Secret Service deploys Robotic dogs at President-elect Donald Trump's property as security measures increase following his election victory.

Source | Artificial Intelligence πŸ€–
/* From Uiverse.io by Shaidend */ 
<div class="InputContainer">
<input
placeholder="Search"
id="input"
class="input"
name="text"
type="text"
/>

<label class="labelforsearch" for="input">
<svg class="searchIcon" viewBox="0 0 512 512">
<path
d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"
></path>
</svg>
</label>
</div>
πŸ‘1
/* From Uiverse.io by Shaidend */ 
.InputContainer {
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(255, 255, 255);
border-radius: 10px;
overflow: hidden;
cursor: pointer;
padding-left: 15px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
}

.input {
width: 170px;
height: 100%;
border: none;
outline: none;
font-size: 0.9em;
caret-color: rgb(255, 81, 0);
}

.labelforsearch {
cursor: text;
padding: 0px 12px;
}

.searchIcon {
width: 13px;
}

.border {
height: 40%;
width: 1.3px;
background-color: rgb(223, 223, 223);
}

.micIcon {
width: 12px;
}

.micButton {
padding: 0px 15px 0px 12px;
border: none;
background-color: transparent;
height: 40px;
cursor: pointer;
transition-duration: 0.3s;
}

.searchIcon path {
fill: rgb(114, 114, 114);
}

.micIcon path {
fill: rgb(255, 81, 0);
}

.micButton:hover {
background-color: rgb(255, 230, 230);
transition-duration: 0.3s;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShadUI Calendar Demo</title>
<!-- React and ReactDOM -->
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" crossorigin></script>
<!-- Babel for JSX -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
// Initialize Tailwind CSS
tailwind.config = {
theme: {
extend: {},
},
};
</script>
<!-- Date Utilities -->
<script src="https://cdn.jsdelivr.net/npm/date-fns@2.30.0/dist/date-fns.min.js"></script>
<!-- Radix UI Styles (if necessary for the calendar) -->
<style>
/* Add any custom styles required by ShadUI */
</style>
</head>
<body class="bg-gray-100 p-6">
<div id="root"></div>

<script type="text/babel">
const { useState } = React;

function Calendar({ mode, selected, onSelect, className }) {
// Generate a simple calendar UI (mocking ShadUI behavior for demo purposes)
const days = Array.from({ length: 30 }, (_, i) => i + 1);
const today = new Date();

return (
<div className={`grid grid-cols-7 gap-2 p-4 bg-white rounded-md border shadow-md ${className}`}>
{days.map((day) => {
const date = new Date(today.getFullYear(), today.getMonth(), day);
const isSelected = selected && selected.toDateString() === date.toDateString();

return (
<button
key={day}
onClick={() => onSelect(date)}
className={`p-2 text-sm rounded-md ${
isSelected ? "bg-blue-500 text-white" : "bg-gray-100"
} hover:bg-blue-100`}
>
{day}
</button>
);
})}
</div>
);
}

function CalendarDemo() {
const [date, setDate] = useState(new Date());

return (
<div className="max-w-md mx-auto">
<center> <h1 className="text-lg font-bold mb-4">ShadUI Calendar Demo</h1></center>
<Calendar
mode="single"
selected={date}
onSelect={setDate}
className="rounded-md"
/>
<p className="mt-4 text-gray-700">
Selected Date: <strong>{date.toDateString()}</strong>
</p>
</div>
);
}

// Render the component
ReactDOM.createRoot(document.getElementById("root")).render(<CalendarDemo />);
</script>
</body>
</html>
Forwarded from Lifehack of the day
Find and track the IP address of any person

Grabify IP Logger can give you advanced and detailed statistical data and metadata for all clicks on your links. Your IP Logger link can access information about user’s IP address, location tracker (country, city) and so on.

The service works with just 3 simple steps:

βœ”οΈ Shorten long link.

βœ”οΈ Share the short link with another user.

βœ”οΈ Grab IP address after the user clicks on your short link.

Be attantive: you can also be a target of such actions ❗️Be careful opening links!

#service #security
πŸ‘2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Image Gallery</title>
<style>
/* Basic styling for the body */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}

/* Styling the gallery container */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px;
padding: 10px;
max-width: 1200px;
margin: auto;
}

/* Styling individual images */
.gallery img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effects for images */
.gallery img:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive footer for branding */
footer {
text-align: center;
padding: 15px;
background-color: #333;
color: #fff;
font-size: 14px;
}

footer a {
color: #1da1f2;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Gallery Section -->
<div class="gallery">
<img src="image1.jpg" alt="Image 1">
<img src="image2.jpg" alt="Image 2">
<img src="image3.jpg" alt="Image 3">
<img src="image4.jpg" alt="Image 4">
<img src="image5.jpg" alt="Image 5">
</div>

<!-- Footer Section -->
<footer>
Follow us on <a href="https://t.me/html_codee" target="_blank">Telegram</a> for more updates!
</footer>
</body>
</html>
❀3
const number = 1234567.89;
const formatted = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(number);

console.log(formatted); // $1,234,567.89
🎲 Quiz 'Html'
πŸ–Š 3 questions Β· ⏱ 10 sec
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cursive Typewriter Animation</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
font-family: 'Pacifico', cursive;
background-color: #f5f5f5;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
flex-direction: column;
}

.typewriter {
font-size: 2rem;
color: #333;
border-right: 3px solid #333;
white-space: nowrap;
overflow: hidden;
display: inline-block;
width: 0;
animation: typing 5s steps(50) 1s forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}

@keyframes blink {
50% {
border-color: transparent;
}
}

.footer {
margin-top: 20px;
font-size: 1rem;
font-family: Arial, sans-serif;
color: #555;
}
</style>
</head>
<body>
<div class="typewriter">
Hello, welcome to the typewriter animation in cursive!
</div>
<div class="footer">
&copy; Bestpage IT
</div>
</body>
</html>
πŸ‘2
Π‘heck if your data is leaking through a VPN

Do I Leak is a tool to check for data leaks through VPNs. It is designed to detect most leaks that could reveal your real identity.

To test, go to the link, select "VPN Leak Test" and click on "Begin test". Then follow the simple instruction and the service will check everything for you. Use only verified VPN services.

#security #privacy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Entity Detection</title>
<script src="https://unpkg.com/compromise"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
textarea {
width: 100%;
height: 100px;
}
button {
margin-top: 10px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.results {
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Entity Detection (People and Places)</h1>
<textarea id="inputText" placeholder="Enter your text here..."></textarea>
<button onclick="analyzeText()">Analyze</button>

<div class="results">
<h3>Results:</h3>
<p><strong>People:</strong> <span id="people"></span></p>
<p><strong>Places:</strong> <span id="places"></span></p>
</div>

<script>
function analyzeText() {
const text = document.getElementById('inputText').value;
const doc = nlp(text);

// Extract people and places
const people = doc.people().out('array');
const places = doc.places().out('array');

// Display results
document.getElementById('people').textContent = people.length ? people.join(', ') : 'None detected';
document.getElementById('places').textContent = places.length ? places.join(', ') : 'None detected';
}
</script>
</body>
</html>
<iframe style="background: white;border-radius: 8px; border: none; box-shadow: 5px 5px 24px 0px #0000001F;" src="https://embed.writer.com/chat/jHZqvB2YSqb-R4GfdcWDHCw8U9Nr5HAsa6Hauc8JFrc" width="800" height="600"></iframe>
import pyfiglet

# write text
text = "Html"
result = pyfiglet.figlet_format(text)

# OUTPUT
print(result)