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
what html codes do you need? Contribute to the development of our channel, write your thoughts and suggestions in the comments!
"Learning information technology (IT) 100% at home is possible, but it requires dedication, discipline, and a structured approach. Here are some steps you can follow to achieve this goal:\n\n1. Set clear goals: Determine what area of IT you want to focus on, such as networking, programming, cybersecurity, or data management. Set specific, measurable, achievable, relevant, and time-bound (SMART) goals to guide your learning journey.\n\n2. Research resources: Identify free and paid resources, such as online courses, tutorials, books, and forums, to help you learn IT concepts and skills. Some popular platforms include Coursera, edX, Udacity, Udemy, and Khan Academy.\n\n3. Create a study schedule: Develop a daily or weekly schedule that allocates time for learning, practicing, and reviewing IT concepts. Be consistent and disciplined in sticking to your schedule.\n\n4. Learn from multiple sources: Use a combination of resources to reinforce your understanding of IT concepts. This may include online courses, textbooks, video tutorials, and hands-on practice.\n\n5. Practice, practice, practice: Apply your IT skills through hands-on practice, such as building projects, participating in coding challenges, or working on real-world problems. This will help you develop a deeper understanding of the concepts and improve your problem-solving skills.\n\n6. Join online communities: Engage with other IT learners and professionals through online forums, social media groups, and discussion boards. This will help you stay motivated, ask questions, and learn from others' experiences.\n\n7. Stay updated: The IT field is constantly evolving, so it's essential to stay updated on the latest trends, technologies, and best practices. Follow industry blogs, podcasts, and news sources to keep informed.\n\n8. Seek feedback: Regularly seek feedback from peers, mentors, or online communities to identify areas for improvement and refine your skills.\n\n9. Track your progress: Keep a record of your learning milestones and achievements. This will help you stay motivated and provide evidence of your progress.\n\n10. Be patient and persistent: Learning IT takes time and effort. Be patient with yourself, and don't be discouraged by setbacks. Stay persistent and committed to your goals.\n\nRemember, learning IT 100% at home requires dedication, discipline, and a structured approach. By following these steps, you can develop the skills and knowledge needed to excel in the IT field."
<!DOCTYPE html>
<html>
<head>
<title>Samsung Galaxy Turn On Animation</title>
<style>
body {
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.galaxy {
width: 200px;
height: 200px;
background-color: #000;
border-radius: 50%;
position: relative;
overflow: hidden;
animation: galaxy-spin 2s linear infinite;
}

.galaxy:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
animation: galaxy-pulse 2s ease-in-out infinite;
}

@keyframes galaxy-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

@keyframes galaxy-pulse {
0% {
transform: scale(0);
opacity: 0;
}
50% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(0);
opacity: 0;
}
}
</style>
</head>
<body>
<div class="galaxy"></div>
</body>
</html>
๐Ÿ‘2
"The largest castle in Korean history is Gyeongbokgung Palace, located in Seoul. It was the main royal residence of the Joseon Dynasty (1392-1910) and is the most famous and well-preserved palace among the five grand palaces of Seoul. Gyeongbokgung Palace was built in 1395 and served as the administrative and political center of the Joseon Dynasty. It was destroyed during the Japanese invasions in the 16th century and later restored in the 20th century. The palace complex covers an area of approximately 350,000 square meters and features numerous buildings, including the Gaecheongjeon (main royal residence), Hyangwonjeon (royal library), and Geunjeongjeon (throne hall)."
?
Html codes pinned ยซWhat code need?ยป
๐Ÿค– 10Web

โ„น๏ธ 10Web is an AI-powered website builder that offers advanced features and automation to simplify the process of creating and managing websites.

Key features:
โ–ซ๏ธAI-Powered Website Builder - Utilizes artificial intelligence to streamline website creation and customization.
โ–ซ๏ธAutomated Website Hosting - Offers automated website hosting and management, reducing the need for manual intervention.
โ–ซ๏ธWordPress Integration - Seamlessly integrates with WordPress, providing access to the extensive WordPress plugin ecosystem.
โ–ซ๏ธWebsite Performance Optimization - Enhances website speed and performance through AI-driven optimization techniques.

Ways of use in various industries:
โ–ซ๏ธSmall Businesses - Small businesses can benefit from 10Web's AI-powered website builder to create professional websites without extensive technical knowledge, enabling them to establish an online presence effectively.

โœ… #developertools
๐Ÿ’ฐ #paid Plans start from $10/mo
๐Ÿ‘‰ More Details
Forwarded from HTML-CSS-JS-QUIZ
The first version of HTML was written by
Anonymous Quiz
20%
Dave Raggett
19%
Charles Babbage
53%
Tim Berners Lee
7%
Augusta Ada
Forwarded from HTML-CSS-JS-QUIZ
Which one is the correct way of adding image in HTML file?
Anonymous Quiz
5%
<image source>
81%
<img src>
4%
<img source>
10%
<image src>
Forwarded from HTML-CSS-JS-QUIZ
An ID SELECTOR in CSS file starts with
Anonymous Quiz
70%
Hashtag
9%
Period
13%
Semicolon
7%
Star
<!DOCTYPE html>
<html>
<head>
<title>Photo to Sketch Converter</title>
<style>
canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Photo to Sketch Converter</h1>
<input type="file" id="upload" accept="image/*">
<canvas id="canvas"></canvas>

<script>
const upload = document.getElementById('upload');
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');

upload.addEventListener('change', handleUpload);

function handleUpload(event) {
const file = event.target.files[0];
const reader = new FileReader();

reader.onload = function (event) {
const img = new Image();
img.onload = function () {
canvas.width = img.width;
canvas.height = img.height;
ctx.drawImage(img, 0, 0);
convertToSketch();
};
img.src = event.target.result;
};

reader.readAsDataURL(file);
}

function convertToSketch() {
const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
const data = imageData.data;

for (let i = 0; i < data.length; i += 4) {
const red = data[i];
const green = data[i + 1];
const blue = data[i + 2];
const gray = (red + green + blue) / 3;

data[i] = gray;
data[i + 1] = gray;
data[i + 2] = gray;
}

ctx.putImageData(imageData, 0, 0);
}
</script>
</body>
</html>
๐Ÿ‘2๐Ÿ˜1
what html codes do you need? Contribute to the development of our channel, write your thoughts and suggestions in the comments!
Html codes pinned a photo