All Projects → iLoveCodingOrg → html-cheatsheet

iLoveCodingOrg / html-cheatsheet

Licence: MIT license
See the basic syntax of HTML and the terminologies around it

Projects that are alternatives of or similar to html-cheatsheet

Kali Linux Cheatsheet
Kali Linux Cheat Sheet for Penetration Testers
Stars: ✭ 483 (+230.82%)
Mutual labels:  cheatsheet, cheatsheets
Asciidots-Cheat-Sheet
My personal Asciidots Cheat Sheet in .jpg .odt .pdf .png and obviously in .txt
Stars: ✭ 17 (-88.36%)
Mutual labels:  cheatsheet, cheatsheets
Swift Cheatsheet
A quick reference cheat sheet for common, high level topics in Swift.
Stars: ✭ 914 (+526.03%)
Mutual labels:  cheatsheet, cheatsheets
Training Kit
Open source courseware for Git and GitHub
Stars: ✭ 3,462 (+2271.23%)
Mutual labels:  cheatsheet, cheatsheets
Kubectl Sheetcheat
The Definitive Kubectl Sheetcheat. ⭐ Give it a star if you like it. Work (always) in progress !
Stars: ✭ 119 (-18.49%)
Mutual labels:  cheatsheet, cheatsheets
Awesome Android Interview
🔥 A awesome android expert interview questions and answers(continuous updating ...)
Stars: ✭ 3,596 (+2363.01%)
Mutual labels:  cheatsheet, cheatsheets
Algorithms Cheatsheet Resources
🤓All the geeky stuffs you need to know at one place!
Stars: ✭ 60 (-58.9%)
Mutual labels:  cheatsheet, cheatsheets
react-cheatsheets
Create and generate cheat sheets using React
Stars: ✭ 21 (-85.62%)
Mutual labels:  cheatsheet, cheatsheets
C Sharp Cheatsheet
C# Cheatsheet
Stars: ✭ 111 (-23.97%)
Mutual labels:  cheatsheet, cheatsheets
Pyspark Cheatsheet
🐍 Quick reference guide to common patterns & functions in PySpark.
Stars: ✭ 108 (-26.03%)
Mutual labels:  cheatsheet, cheatsheets
Awesome-Math-Learning
📜 Collection of the most awesome Math learning resources in the form of notes, videos and cheatsheets.
Stars: ✭ 73 (-50%)
Mutual labels:  cheatsheet, cheatsheets
Javascripter
Helping junior developers navigate the complex world of software engineering without experiencing information overload.
Stars: ✭ 203 (+39.04%)
Mutual labels:  cheatsheet, cheatsheets
css-cheatsheet
Syntax, terminologies, selectors, and common properties of CSS
Stars: ✭ 114 (-21.92%)
Mutual labels:  cheatsheet, cheatsheets
Awesome Cheatsheets
👩‍💻👨‍💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.
Stars: ✭ 26,007 (+17713.01%)
Mutual labels:  cheatsheet, cheatsheets
cheat-sheet
collection of cheat sheets
Stars: ✭ 150 (+2.74%)
Mutual labels:  cheatsheet, cheatsheets
Cmd Command Cheat Sheet
CMD - Command Cheat Sheat ✅
Stars: ✭ 50 (-65.75%)
Mutual labels:  cheatsheet, cheatsheets
dev-cheatsheets
A collection of code snippets and CLI guides for quick and easy reference while coding
Stars: ✭ 33 (-77.4%)
Mutual labels:  cheatsheet, cheatsheets
memo-dev
Knowledge base, Today I Learned, Cheatsheet ... Call this as you want ...
Stars: ✭ 13 (-91.1%)
Mutual labels:  cheatsheet, cheatsheets
Python Cheatsheet
Basic Cheat Sheet for Python (PDF, Markdown and Jupyter Notebook)
Stars: ✭ 1,334 (+813.7%)
Mutual labels:  cheatsheet, cheatsheets
Cheatsheets.pdf
📚 Various cheatsheets in PDF
Stars: ✭ 159 (+8.9%)
Mutual labels:  cheatsheet, cheatsheets

🔥 HTML Cheatsheet 🗺️

This is the cheatsheet for the basic syntax, terminologies, markup, and common elements of HTML.

Note: This is not an exhaustive list of all the elements HTML has. For an awesome HTML Reference, click here.

Want to learn HTML & CSS? here's an awesome video course

I present to you - The HTML Cheatsheet 💪

HTML Cheatsheet

Download PDF or Image

What is a syntax?

All languages have a syntax. English, Urdu, HTML, JavaScript all have a syntax. In English, we learn when to write commas, full-stops, paragraphs etc. Similarly there are syntax rules for HTML.

HTML is a markup language that has ONLY one thing - Elements. HTML is a collection of elements. A combination of elements are used to build a webpage.

Rules of writing HTML Elements

1. All elements have have an opening tag

<openingtag>

2. The Opening tag has the name of the element <elementname>

3. All elements close.

4. Either elements self-close <elementname />

5. or they close via a closing tag

<elementname> // Opening tag
</elementname> // closing tag

6. Elements optionally have attributes and attributes have value

<element att="value">

7. Elements optionally have children between the opening and closing tag

<elementname>
   children
</elementname>

These children can either be more elements or simply plain text

<elementname>
    <second>
        children of second element
    </second>

    <third>
        children of third element
    </third>
</elementname>

📋 HTML References

The above was how to write HTML, now you may want to know all the different elements there are available in the HTML language.

Luckily, Mozilla and a ton of open source contributors have put together an HTML Reference.

It has a list of all HTML elements by category.

👍 Want to learn HTML & CSS?

Try the most comprehensive HTML & CSS video course on iLoveCoding.

Learn how to code HTML & CSS and build simple and professional websites.

🗺️️️️️Want a CSS Cheatsheet as well?

Check out this CSS Cheatsheet

Other Cheatsheets:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].