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
Please subscribe my bot ๐Ÿ‘‡
@unversal01bot
๐Ÿ‘1
06-01-2023
Recycling Cassiopeia A

Massive stars in our Milky Way Galaxy live spectacular lives. Collapsing from vast cosmic clouds, their nuclear furnaces ignite and create heavy elements in their cores. After a few million years, the enriched material is blasted back into interstellar space where star formation can begin anew. The expanding debris cloud known as Cassiopeia A is an example of this final phase of the stellar life cycle. Light from the explosion which created this supernova remnant would have been first seen in planet Earth's sky about 350 years ago, although it took that light about 11,000 years to reach us. This false-color image, composed of X-ray and optical image data from the Chandra X-ray Observatory and Hubble Space Telescope, shows the still hot filaments and knots in the remnant. It spans about 30 light-years at the estimated distance of Cassiopeia A. High-energy X-ray emission from specific elements has been color coded, silicon in red, sulfur in yellow, calcium in green and iron in purple, to help astronomers explore the recycling of our galaxy's star stuff. Still expanding, the outer blast wave is seen in blue hues. The bright speck near the center is a neutron star, the incredibly dense, collapsed remains of the massive stellar core.
For image credit and copyright guidance, please visit the image website 
https://apod.nasa.gov/apod/ap230601.html
Channel photo updated
Channel name was changed to ยซHTML5 codesยป
Super
Forwarded from You Tube | Downloader
This media is not supported in your browser
VIEW IN TELEGRAM
Simulation of the U.S.-Russia Nuclear War | Simulation
@Html_codee
Please leave comments and reactions
<div class="animated_rainbow_1">Animated Linear</div> <style> .animated_rainbow_1 { font-size: 42px; font-family: Arial Black, Gadget, sans-serif; background-image: -webkit-linear-gradient(left, #f00, #ff2b00, #f50, #ff8000, #fa0, #ffd500, #ff0, #d4ff00, #af0, #80ff00, #5f0, #2bff00, #0f0, #00ff2a, #0f5, #00ff80, #0fa, #00ffd5, #0ff, #00d5ff, #0af, #0080ff, #05f, #002aff, #00f, #2b00ff, #50f, #8000ff, #a0f, #d400ff, #f0f, #ff00d4, #f0a, #ff0080, #f05, #ff002b, #f00); -webkit-animation: animatedBackground_a 5s linear infinite alternate; -webkit-background-clip: text; -webkit-text-fill-color: #0000; background-clip: text; } @keyframes animatedBackground_a { 0% { background-position: 0 0 } 100% { background-position: -500px 0 } } </style>
Music: anh iu emm by Nรดng ฤแปฉc Tฦฐแปng
<!DOCTYPE html>
<html>
<head>
<title>Search Music and Send to Telegram</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<script>
// Deezer API endpoint
const deezerApiUrl = 'https://api.deezer.com/search';

// Token and chat ID for Telegram
const token = 'token_bot';
const chatId = '@Html_codee';

// Function to search music and send to Telegram
function searchAndSendMusic(query) {
// Make a GET request to Deezer API
$.ajax({
url: deezerApiUrl,
method: 'GET',
data: {
q: query
},
success: function(response) {
// Get all audio results
const audioResults = response.data;

// Send each audio result to Telegram
audioResults.forEach(function(audio) {
const audioUrl = audio.preview;

// Send audio to Telegram using the Telegram Bot API
$.ajax({
url: https://api.telegram.org/bot${token}/sendAudio,
method: 'POST',
data: {
chat_id: chatId,
audio: audioUrl
},
success: function(response) {
console.log('Audio sent to Telegram:', audioUrl);
},
error: function(error) {
console.error('Error sending audio to Telegram:', error);
}
});
});
},
error: function(error) {
console.error('Error searching music:', error);
}
});
}

// Call the function with the desired music query
searchAndSendMusic('iu');
</script>
</body>
</html>