Learn Html
354 subscribers
101 photos
2 videos
34 files
263 links
All info and tutorial of Html
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @CyberPunk_anonymous
Download Telegram
Forwarded from Cyber Punk
▪️Username | Your online identity

When choosing a username, it’s important not to reveal any personal information.

Some other useful tips to help you generate your username:

➤ Don’t use your full name or parts of your address or phone number.

➤Don’t use your email username.

➤ Don’t use the same username and password combination, especially on financial accounts.

➤ Don’t choose a super-odd username and then reuse it again and again — it makes you easier to track.

➤ Don’t choose a username that gives clues to your passwords such as a series of numbers/letters, the first part of a two-part phrase, such as knock-knock or starlight, or the department in which you work, such as IT.

➤ Do choose a username that’s appropriate for the type of account, i.e., business, social or personal.

Keep Supporting ❤️
====================
Join Our Telegram Channel

t.me/CyberPunk_anonymous
Forwarded from All kind of Ebooks
Books list

1- .NET 13 BOOK
2- ANGULAR 12 BOOK
3- BOOTSTRAP 30 BOOK
4-FRONT END 16 BOOK
5-HTML - CSS 42 BOOK
6- JAVA 30 BOOK
7- JAVA SCRIPT 78 BOOK
8- NODE JS 25 BOOK

TOTAL BOOKS 246 BOOK(Size: 2.5 GB)
https://drive.google.com/drive/u/1/folders/1aXlI-fNsCGmwrFLjSSkHA3FSTClnSSnb
Practice with Kevin Powell on some HTML tags that many people don't know much about

https://youtu.be/JuLBQXERz8Y

#html #kevinPowell
Exercises from John Komarnicki on some important but little-known HTML tags

https://www.youtube.com/watch?v=s8-y-B96dr8

#html #tags #JohnKomarnicki
Long practice HTML introduction for beginners with Freecodecamp

https://www.freecodecamp.org/news/learn-html-beginners-course/

---

Tips and tricks for using HTML for money are rarely known

https://javascript.plainenglish.io/9-html-tips-nobody-is-talking-about-2022-edition-b7c095029030

#html #freecodecamp
Practical HTML5 Mastery Course
———————————————————
✳️ 100% Free
❇️ Expiry - Within Few hours
❇️ Certificate- Yes
———————————————————
Start your frontend development journey by implementing HTML5 concepts in a complete hands-on based approach
———————————————————
Enroll Fast || Within Few hours
———————————————————
𝐄𝐧𝐫𝐨𝐥𝐥 𝐋𝐢𝐧𝐤➛
https://www.udemy.com/course/practical-html5-mastery-course/?couponCode=A7C04CE79E1DA142CF70
———————————————————
Invite Your Friends➛
T.me/html_web_learn
NoJS — Creating a calculator with only pure HTML and CSS. No Javascript!

https://blog.scottlogic.com/2022/01/20/noJS-making-a-calculator-in-pure-css-html.html
Amazing HTML5 Features That Just 3% of Developers Knows — Easy and Surprising

https://halimshams.medium.com/amazing-html5-features-that-just-3-of-developers-knows-easy-and-surprising-ac67ff598162
Take a look at some of the lesser-known but useful HTML attributes

https://www.smashingmagazine.com/2022/03/html-attributes-you-never-use/

#html #attribute
5 Modern Bash Scripting Techniques That Only A Few Programmers Know

#bash

https://bit.ly/3KgA5Pq
Practice from Dcode on creating custom HTML Elements with JavaScript and HTML
https://www.youtube.com/watch?v=tlcEXDGo0oY

#dcode #html #custom
😁2
Create HTML code from any hand-drawn design with Sketch2Code.🎯

Its features include👇
⚡️Detect design patterns
⚡️Understand handwritten text
⚡️Understand structure
⚡️Generate HTML

https://sketch2code.azurewebsites.net/
🤯1
This media is not supported in your browser
VIEW IN TELEGRAM
Simple HTML questions for beginners:

1) What is HTML
?

HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. It makes the text more interactive and dynamic. It can turn text into images, tables, links.


2) What are Ta
gs?

HTML tags are composed of three things: an opening tag, content and ending tag. Some tags are unclosed tags.

HTML documents contain two things: content and tags

When a web browser reads an HTML document, the browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties.

<tag> content </tag>


3) Do all HTML tags have an end
tag?

No. There are some HTML tags that don't need a closing tag. For example: <image> tag, <br> tag.


4) What is formatting i
n HTML?

The HTML formatting is a process of format the text for a better look and feel. It uses different tags to make text bold, italicized, underlined.
More details.



5) How many types of heading does an HTM
L contain?

The HTML contains six types of headings which are defined with the <h1> to <h6> tags. Each type of heading tag displays different text size from another. So, <h1> is the largest heading tag and <h6> is the smallest one. For example:
<h1>Heading no. 1</h1>
<h2>Heading no. 2</h2>
<h3>Heading no. 3</h3>
<h4>Heading no. 4</h4>
<h5>Heading no. 5</h5>
<h6>Heading no. 6</h6>
More details.